We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c20835f commit b294573Copy full SHA for b294573
1 file changed
.github/workflows/continuous-testing.yaml
@@ -5,16 +5,16 @@ jobs:
5
runs-on: ubuntu-latest
6
strategy:
7
matrix:
8
- node-version: [20.x, 22.x]
+ node-version: [20, 22]
9
steps:
10
- run: set -e
11
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
12
- name: Use Node.js ${{ matrix.node-version }}
13
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v4
14
with:
15
node-version: ${{ matrix.node-version }}
16
- name: Cache Node.js modules
17
- uses: actions/cache@v2
+ uses: actions/cache@v4
18
19
path: ~/.npm
20
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
0 commit comments