Drop support for Go 1.21, add support for 1.24 (#1959)

This commit is contained in:
Erik Dubbelboer
2025-02-20 19:01:50 +09:00
committed by GitHub
parent 086a114445
commit 84f0231a53
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -20,10 +20,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
go-version: 1.24.x
- run: go version
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0
version: v1.64.5
args: --verbose
+1 -1
View File
@@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.21.x, 1.22.x, 1.23.x]
go-version: [1.22.x, 1.23.x, 1.24.x]
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
runs-on: ${{ matrix.os }}
steps: