Skip to content

Commit 3d8a18f

Browse files
ci: update Go versions to 1.23 and 1.24, staticcheck to v0.6.1 (#42)
* ci: update Go versions to 1.23 and 1.24 * ci: update staticcheck to v0.6.1
1 parent 39080b9 commit 3d8a18f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ "ubuntu" ]
9-
go: [ "1.22.x", "1.23.x" ]
9+
go: [ "1.23.x", "1.24.x" ]
1010
runs-on: ${{ fromJSON(vars[format('INTEGRATION_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
1111
name: Integration tests (${{ matrix.os}}, Go ${{ matrix.go }})
1212
steps:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: "1.23.x"
15+
go-version: "1.24.x"
1616
- name: Check for //go:build ignore in .go files
1717
working-directory: ${{ matrix.module }}
1818
run: |
@@ -45,7 +45,7 @@ jobs:
4545
run: go vet ./...
4646
- name: Install staticcheck
4747
if: success() || failure() # run this step even if the previous one failed
48-
run: go install honnef.co/go/tools/cmd/staticcheck@v0.5.0
48+
run: go install honnef.co/go/tools/cmd/staticcheck@v0.6.1
4949
- name: staticcheck
5050
if: success() || failure() # run this step even if the previous one failed
5151
working-directory: ${{ matrix.module }}

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ "ubuntu", "windows", "macos" ]
9-
go: [ "1.22.x", "1.23.x" ]
9+
go: [ "1.23.x", "1.24.x" ]
1010
runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
1111
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
1212
steps:

0 commit comments

Comments
 (0)