Skip to content

Commit 9c0687e

Browse files
committed
Update GitHub Actions
1 parent b0afaee commit 9c0687e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
go: ["1.19", "1.20"]
12+
go: ["1.19", "1.20", "1.21", "1.22", "1.23", "1.24"]
1313
stage: [testredis, testconn, testcluster]
1414

1515
steps:
1616

1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919

2020
- name: Set up Go ${{ matrix.go }}
21-
uses: actions/setup-go@v1
21+
uses: actions/setup-go@v5
2222
with:
2323
go-version: ${{ matrix.go }}
2424

2525
- name: Cache go modules
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/go/pkg/mod
2929
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
3030
restore-keys: |
3131
${{ runner.os }}-go-
3232
3333
- name: Cache redis build
34-
uses: actions/cache@v2
34+
uses: actions/cache@v4
3535
with:
3636
path: |
3737
/tmp/redis-server

0 commit comments

Comments
 (0)