We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1cac25 commit 3e00920Copy full SHA for 3e00920
1 file changed
.github/workflows/deploy_website.yml
@@ -22,19 +22,17 @@ jobs:
22
run:
23
working-directory: Website
24
steps:
25
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
26
27
- name: Setup Node
28
- uses: actions/setup-node@v3
29
- with:
30
- node-version: '20'
31
-
+ uses: actions/setup-node@v4
+
32
- name: Get yarn cache
33
id: yarn-cache
34
run: echo "YARN_CACHE_DIR=$(yarn cache dir)" >> "${GITHUB_OUTPUT}"
35
36
- name: Cache dependencies
37
- uses: actions/cache@v3
+ uses: actions/cache@v4
38
with:
39
path: ${{ steps.yarn-cache.outputs.YARN_CACHE_DIR }}
40
key: ${{ runner.os }}-Website-${{ hashFiles('**/yarn.lock') }}
0 commit comments