diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 7ee5580..2719bf8 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,7 +2,7 @@ ARG VARIANT="1.23" FROM mcr.microsoft.com/vscode/devcontainers/go:${VARIANT} -ARG GOLANGCI_LINT_VERSION="1.49.0" +ARG GOLANGCI_LINT_VERSION="1.61.0" RUN echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' \ | tee /etc/apt/sources.list.d/goreleaser.list diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 63ea173..9377ce8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,7 +4,7 @@ "dockerfile": "Dockerfile", "args": { "VARIANT": "1.23", - "GOLANGCI_LINT_VERSION": "1.49.0" + "GOLANGCI_LINT_VERSION": "1.61.0" } }, "extensions": [ diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 636e079..fce0a21 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -47,7 +47,7 @@ jobs: - name: Lint uses: golangci/golangci-lint-action@v6 with: - version: v1.49 + version: v1.61 args: --timeout 30m build: name: Build diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index f95bf1a..133739c 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -32,7 +32,7 @@ jobs: - name: Format uses: golangci/golangci-lint-action@v6 with: - version: v1.49 + version: v1.61 args: --fix --timeout 30m - name: Commit uses: stefanzweifel/git-auto-commit-action@v5