Skip to content

Commit 77ad978

Browse files
ci: update Go versions to 1.23 and 1.24
1 parent 321f13c commit 77ad978

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.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: 1 addition & 1 deletion
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: |

.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)