Skip to content

Commit 3aebbc3

Browse files
committed
ci: bump workflow action, avoid warning
1 parent 0f11ee6 commit 3aebbc3

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/apidiff.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ jobs:
1010
compat:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/setup-go@v4
13+
- uses: actions/setup-go@v5
1414
with:
15-
go-version: 1.21
15+
cache: false
16+
go-version: 1.22
1617
- run: go install golang.org/x/exp/cmd/apidiff@latest
17-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1819
with:
1920
ref: master
2021
- run: apidiff -w uuid.baseline .
21-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2223
with:
2324
clean: false
2425
- run: |

.github/workflows/tests.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
unit-tests:
1111
strategy:
1212
matrix:
13-
go-version: [1.19, 1.20.x, 1.21]
13+
go-version: [1.20.x, 1.21.x, 1.22]
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-go@v4
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-go@v5
1818
with:
19+
cache: false
1920
go-version: ${{ matrix.go-version }}
2021
- run: go test -v ./...

0 commit comments

Comments
 (0)