updated dependencies

This commit is contained in:
ston1th 2023-01-15 16:30:08 +01:00
commit e95910d920
148 changed files with 18553 additions and 2442 deletions

View file

@ -9,7 +9,7 @@ MD_PROGRAM=metadatagen
MD_CMD=-o $(MD_PROGRAM) cmd/$(MD_PROGRAM)/main.go
CTL_PROGRAM=cachectl
CTL_CMD=-o $(CTL_PROGRAM) cmd/$(CTL_PROGRAM)/main.go
ENV=CGO_ENABLED=0 GO111MODULE=on
ENV=GOGC=0 CGO_ENABLED=0 GO111MODULE=on
all: $(PROGRAM) $(MD_PROGRAM) $(CTL_PROGRAM)
@ -46,6 +46,9 @@ codeqa: govet misspell test
govet:
$(CC) vet ./...
update:
$(ENV) $(CC) get -u ./...
misspell:
$(GOPATH)/bin/misspell cmd/* pkg/* Makefile README.md
@ -63,4 +66,4 @@ else
$(info skipping tests of other platforms)
endif
.PHONY: setup release release-vendor vendor build clean codeqa gofmt govet misspell staticcheck test
.PHONY: setup release release-vendor vendor build clean codeqa gofmt govet update misspell staticcheck test