diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index c0223b55..48e2391b 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -32,7 +32,7 @@ jobs: - uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1 with: # renovate: datasource=github-releases depName=golangci/golangci-lint - version: v1.62.2 + version: v1.63.3 tests: name: Run tests diff --git a/Makefile b/Makefile index 6b0e3332..02f67ff4 100644 --- a/Makefile +++ b/Makefile @@ -29,18 +29,18 @@ docs: build qa: lint test -# renovate: datasource=github-releases depName=radiofrance/lint-config -LINT_CONFIG_VERSION=v1.0.1 +LINT_CONFIG_VERSION = v1.0.2 + lint: ## Lint source code curl -o .golangci.yml -sS "https://raw.githubusercontent.com/radiofrance/lint-config/${LINT_CONFIG_VERSION}/.golangci.yml" golangci-lint run --verbose -PKG := "./..." -RUN := ".*" -RED := $(shell tput setaf 1) -GREEN := $(shell tput setaf 2) -BLUE := $(shell tput setaf 4) -RESET := $(shell tput sgr0) +PKG = ./... +RUN = ".*" +RED = $(shell tput setaf 1) +GREEN = $(shell tput setaf 2) +BLUE = $(shell tput setaf 4) +RESET = $(shell tput sgr0) .PHONY: test test: ## Run tests diff --git a/pkg/graphviz/graphviz_test.go b/pkg/graphviz/graphviz_test.go index 274ebdd1..54c660be 100644 --- a/pkg/graphviz/graphviz_test.go +++ b/pkg/graphviz/graphviz_test.go @@ -23,9 +23,7 @@ func Test_GenerateDotviz(t *testing.T) { map[string]string{}) require.NoError(t, err) - dir, err := os.MkdirTemp("/tmp", "dib-test") - require.NoError(t, err) - defer os.RemoveAll(dir) + dir := t.TempDir() dotFile := path.Join(dir, "dib.dot") err = graphviz.GenerateDotviz(graph, dotFile)