Skip to content

Commit 1e19598

Browse files
committed
Update GitHub Actions
1 parent b0afaee commit 1e19598

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REDIS_ARCHIVE ?= https://github.com/redis/redis/archive
2-
REDIS_VERSION ?= 6.2.10
2+
REDIS_VERSION ?= 7.4.2
33

44
test: testcluster testconn testredis
55

0 commit comments

Comments
 (0)