Skip to content

Commit 885f00a

Browse files
committed
CI: use Go 1.23
Signed-off-by: Florian Lehner <[email protected]>
1 parent aa10087 commit 885f00a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/go.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.18.x, 1.20.x, 1.21.x, 1.22.x]
13+
go-version: [1.18.x, 1.21.x, 1.22.x, 1.23.x]
1414
platform: [ubuntu-latest, macos-latest, windows-latest]
1515
runs-on: ${{ matrix.platform }}
1616
steps:
@@ -27,16 +27,16 @@ jobs:
2727
- name: Test with -race
2828
run: go test -race -count=1 ./...
2929
- name: Integration test
30-
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.22')
30+
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.23')
3131
run: |
3232
sudo modprobe nfnetlink_queue
3333
sudo ip6tables -I OUTPUT -p ipv6-icmp -j NFQUEUE --queue-num 100
3434
sudo iptables -I OUTPUT -p icmp -j NFQUEUE --queue-num 100
3535
go test -v -tags integration -exec=sudo -count=1 ./...
3636
- name: staticcheck.io
37-
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.22')
37+
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.23')
3838
uses: dominikh/[email protected]
3939
with:
40-
version: "2023.1.7"
40+
version: "2024.1.1"
4141
install-go: false
4242
cache-key: ${{ matrix.go-version }}

0 commit comments

Comments
 (0)