We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3fe527 commit 97b5939Copy full SHA for 97b5939
.github/actions/setup/action.yml
@@ -4,7 +4,7 @@ description: 'Full CI env setup (setup node & restore/install dependencies)'
4
inputs:
5
node_version:
6
description: 'Node version to use'
7
- default: '16.10.0'
+ default: '16.20.2'
8
9
runs:
10
using: composite
@@ -20,9 +20,9 @@ runs:
20
uses: actions/cache@v3
21
with:
22
path: "**/node_modules"
23
- key: ${{ runner.os }}-dependency-hash-${{ hashFiles('yarn.lock') }}
+ key: ${{ runner.os }}-node-v${{ inputs.node_version }}-dependency-hash-${{ hashFiles('yarn.lock') }}
24
restore-keys: |
25
- ${{ runner.os }}-dependency-hash-
+ ${{ runner.os }}-node-v${{ inputs.node_version }}-dependency-hash-
26
27
- name: "Install dependencies"
28
# Skip install here because the cache already has an entry, we won't be able to update it, so it's unnecessary to try and rebuild it
0 commit comments