Skip to content

Commit 06704f4

Browse files
committed
CI: upgrade actions, run with Redis 7/8 & Node.js v20/v22/v24 to 💚
1 parent 8bb51e9 commit 06704f4

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

‎.github/workflows/test.yml‎

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,26 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: ['16', '18']
17-
redis-version: ['6']
16+
node-version:
17+
- '16'
18+
- '18'
19+
- '20'
20+
- '22'
21+
- '24'
22+
redis-version:
23+
- '6'
24+
- '7'
25+
- '8'
1826

1927
steps:
2028
- name: checkout
21-
uses: actions/checkout@v2
29+
uses: actions/checkout@5
2230
- name: setup Node v${{ matrix.node-version }}
23-
uses: actions/setup-node@v1
31+
uses: actions/setup-node@v6
2432
with:
2533
node-version: ${{ matrix.node-version }}
2634
- name: setup Redis v${{ matrix.redis-version }}
27-
uses: supercharge/redis-github-action@1.4.0
35+
uses: supercharge/redis-github-action@1.8.0
2836
with:
2937
redis-version: ${{ matrix.redis-version }}
3038
- name: set up luacheck

0 commit comments

Comments
 (0)