Skip to content

Commit c6975e5

Browse files
authored
Update govulncheck, fix typo (#26168)
- Update govulncheck to latest version - Fix typo in variable name
1 parent 2d7fe4c commit c6975e5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ AIR_PACKAGE ?= github.com/cosmtrek/[email protected]
2929
EDITORCONFIG_CHECKER_PACKAGE ?= github.com/editorconfig-checker/editorconfig-checker/cmd/[email protected]
3030
GOFUMPT_PACKAGE ?= mvdan.cc/[email protected]
3131
GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/[email protected]
32-
GXZ_PAGAGE ?= github.com/ulikunitz/xz/cmd/[email protected]
32+
GXZ_PACKAGE ?= github.com/ulikunitz/xz/cmd/[email protected]
3333
MISSPELL_PACKAGE ?= github.com/client9/misspell/cmd/[email protected]
3434
SWAGGER_PACKAGE ?= github.com/go-swagger/go-swagger/cmd/[email protected]
3535
XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
3636
GO_LICENSES_PACKAGE ?= github.com/google/[email protected]
37-
GOVULNCHECK_PACKAGE ?= golang.org/x/vuln/cmd/govulncheck@v0.2.0
37+
GOVULNCHECK_PACKAGE ?= golang.org/x/vuln/cmd/govulncheck@v1.0.0
3838
ACTIONLINT_PACKAGE ?= github.com/rhysd/actionlint/cmd/[email protected]
3939

4040
DOCKER_IMAGE ?= gitea/gitea
@@ -864,7 +864,7 @@ release-check: | $(DIST_DIRS)
864864

865865
.PHONY: release-compress
866866
release-compress: | $(DIST_DIRS)
867-
cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && $(GO) run $(GXZ_PAGAGE) -k -9 $${file}; done;
867+
cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && $(GO) run $(GXZ_PACKAGE) -k -9 $${file}; done;
868868

869869
.PHONY: release-sources
870870
release-sources: | $(DIST_DIRS)
@@ -903,7 +903,7 @@ deps-tools:
903903
$(GO) install $(EDITORCONFIG_CHECKER_PACKAGE)
904904
$(GO) install $(GOFUMPT_PACKAGE)
905905
$(GO) install $(GOLANGCI_LINT_PACKAGE)
906-
$(GO) install $(GXZ_PAGAGE)
906+
$(GO) install $(GXZ_PACKAGE)
907907
$(GO) install $(MISSPELL_PACKAGE)
908908
$(GO) install $(SWAGGER_PACKAGE)
909909
$(GO) install $(XGO_PACKAGE)

0 commit comments

Comments
 (0)