We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b14a0 commit 892ba1cCopy full SHA for 892ba1c
2 files changed
.github/workflows/main.yml
@@ -16,20 +16,12 @@ jobs:
16
17
steps:
18
- name: Begin CI...
19
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
20
21
- - name: Use Node 12
22
- uses: actions/setup-node@v1
+ - name: Use Node 20
+ uses: actions/setup-node@v4
23
with:
24
- node-version: 12.x
25
-
26
- - name: Use cached node_modules
27
- uses: actions/cache@v1
28
- with:
29
- path: node_modules
30
- key: nodeModules-${{ hashFiles('**/yarn.lock') }}
31
- restore-keys: |
32
- nodeModules-
+ node-version: 20.x
33
34
- name: Install dependencies
35
run: yarn install --frozen-lockfile
package.json
@@ -128,5 +128,6 @@
128
],
129
"dependencies": {
130
"client-only": "0.0.1"
131
- }
+ },
132
+ "packageManager": "yarn@1.22.22"
133
}
0 commit comments