Skip to content

Commit ff9b122

Browse files
committed
Update CI to Go 1.25 and golangci-lint v7
Bump GitHub Actions workflow to use Go 1.25 (remove older 1.23/1.24 matrix entries) and update actions/setup-go to 1.25. Upgrade golangci-lint action from v6 to v7 and pin the linter version to v2.1.6 instead of using latest to ensure reproducible linting.
1 parent 42e2050 commit ff9b122

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
go-version: ["1.23", "1.24"]
17+
go-version: ["1.25"]
1818

1919
steps:
2020
- uses: actions/checkout@v4
@@ -41,9 +41,9 @@ jobs:
4141
- name: Set up Go
4242
uses: actions/setup-go@v5
4343
with:
44-
go-version: "1.24"
44+
go-version: "1.25"
4545

4646
- name: golangci-lint
47-
uses: golangci/golangci-lint-action@v6
47+
uses: golangci/golangci-lint-action@v7
4848
with:
49-
version: latest
49+
version: v2.1.6

0 commit comments

Comments
 (0)