Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump golangci/golangci-lint from v1.60.3 to v1.61.0 #239

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
go-version: "1.23.1" # update together with Dockerfile.dev
- uses: golangci/golangci-lint-action@v6
with:
version: "v1.60.3" # update together with Dockerfile.dev
version: "v1.61.0" # update together with Dockerfile.dev

check-tidy:
name: go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM golang:1.23.1 AS go

# update together with .github/workflows/ci.yml
FROM golangci/golangci-lint:v1.60.3 AS linter
FROM golangci/golangci-lint:v1.61.0 AS linter

FROM go AS dev
ENV INSIDE_DEV_CONTAINER 1
Expand Down