Skip to content

Commit 33463fe

Browse files
committed
ci: bump actions and golang versions
Change-Id: I0d067261c1c30c0dc25fbc92f162b0a3746158ef
1 parent 13a521f commit 33463fe

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/linux-integration-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
go-version: ["1.18", "1.19", "1.20"]
15+
go-version: ["1.21", "1.22", "1.23"]
1616
runs-on: ubuntu-latest
1717

1818
steps:
1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ${{ matrix.go-version }}
2323
id: go
2424

2525
- name: Check out code into the Go module directory
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Create a network namespace for privileged tests
2929
run: sudo ip netns add unpriv0

.github/workflows/linux-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
go-version: ["1.18", "1.19", "1.20"]
15+
go-version: ["1.21", "1.22", "1.23"]
1616
runs-on: ubuntu-latest
1717

1818
steps:
1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ${{ matrix.go-version }}
2323
id: go
2424

2525
- name: Check out code into the Go module directory
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Create a network namespace for unprivileged tests
2929
run: sudo ip netns add unpriv0

.github/workflows/macos-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
go-version: ["1.20"]
15+
go-version: ["1.23"]
1616
runs-on: macos-latest
1717

1818
steps:
1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ${{ matrix.go-version }}
2323
id: go
2424

2525
- name: Check out code into the Go module directory
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Run tests
2929
run: go test -v -race ./...

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
go-version: ["1.20"]
15+
go-version: ["1.23"]
1616
runs-on: ubuntu-latest
1717

1818
steps:
1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ${{ matrix.go-version }}
2323
id: go
2424

2525
- name: Check out code into the Go module directory
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Install staticcheck
2929
run: go install honnef.co/go/tools/cmd/staticcheck@latest

0 commit comments

Comments
 (0)