Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
go-version: "1.25.5" # update together with dev.dockerfile
- uses: golangci/golangci-lint-action@v9
with:
version: "v2.7.2" # update together with dev.dockerfile
version: "v2.8.0" # update together with dev.dockerfile

lint-latest-deps:
runs-on: ubuntu-latest
Expand All @@ -77,7 +77,7 @@ jobs:
- run: make apply-latest-deps
- uses: golangci/golangci-lint-action@v9
with:
version: "v2.7.2" # update together with dev.dockerfile
version: "v2.8.0" # update together with dev.dockerfile

check-tidy:
name: go mod tidy
Expand Down
5 changes: 4 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Based on https://gist.github.com/maratori/47a4d00457a92aa426dbd48a18776322
# Based on https://github.com/maratori/golangci-lint-config

version: "2"

Expand Down Expand Up @@ -311,6 +311,9 @@ linters:
# Assert no unused link in godocs.
# https://github.com/godoc-lint/godoc-lint?tab=readme-ov-file#no-unused-link
- no-unused-link
# Require proper doc links to standard library declarations where applicable.
# https://github.com/godoc-lint/godoc-lint?tab=readme-ov-file#require-stdlib-doclink
- require-stdlib-doclink

govet:
# Enable all analyzers.
Expand Down
2 changes: 1 addition & 1 deletion dev.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM golang:1.25.5 AS go

# update together with .github/workflows/ci.yml
FROM golangci/golangci-lint:v2.7.2 AS linter
FROM golangci/golangci-lint:v2.8.0 AS linter

FROM go AS dev
ENV INSIDE_DEV_CONTAINER=1
Expand Down