fix: cache from manual path instead of deprecated command
This commit is contained in:
parent
3edabaddf9
commit
fc525d737c
10
.github/workflows/lint.yml
vendored
10
.github/workflows/lint.yml
vendored
@ -17,13 +17,10 @@ jobs:
|
|||||||
- name: Enable Corepack
|
- name: Enable Corepack
|
||||||
run: |
|
run: |
|
||||||
corepack enable
|
corepack enable
|
||||||
- name: Get yarn cache directory path
|
|
||||||
id: yarn-cache-dir-path
|
|
||||||
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
|
||||||
- name: Restore cache
|
- name: Restore cache
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
path: .yarn/cache
|
||||||
key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-ui-
|
${{ runner.os }}-ui-
|
||||||
@ -49,13 +46,10 @@ jobs:
|
|||||||
- name: Enable Corepack
|
- name: Enable Corepack
|
||||||
run: |
|
run: |
|
||||||
corepack enable
|
corepack enable
|
||||||
- name: Get yarn cache directory path
|
|
||||||
id: yarn-cache-dir-path
|
|
||||||
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
|
||||||
- name: Restore cache
|
- name: Restore cache
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
path: .yarn/cache
|
||||||
key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }}
|
key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-ui-
|
${{ runner.os }}-ui-
|
||||||
|
Loading…
x
Reference in New Issue
Block a user