зеркало из
1
0
Форкнуть 0

Update `@action/cache` to use `v4` to fix node 16 deprecation warning (#4774)

This commit is contained in:
James Burnside 2024-06-25 11:33:02 -07:00 коммит произвёл GitHub
Родитель 98448af88a
Коммит dcaaf8c666
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
11 изменённых файлов: 27 добавлений и 27 удалений

2
.github/workflows/alpha-release.yml поставляемый
Просмотреть файл

@ -32,7 +32,7 @@ jobs:
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/breaking-change-check.yml поставляемый
Просмотреть файл

@ -58,7 +58,7 @@ jobs:
# Try get node_modules from cache
- name: Restore node_modules from cache
if: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'breaking-change') }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

24
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -75,7 +75,7 @@ jobs:
node-version: 'lts/*'
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -153,7 +153,7 @@ jobs:
node-version: 'lts/*'
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -248,7 +248,7 @@ jobs:
node-version: 'lts/*'
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -300,7 +300,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -369,7 +369,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -438,7 +438,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -504,7 +504,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -560,7 +560,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -591,7 +591,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -624,7 +624,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -658,7 +658,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -692,7 +692,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

Просмотреть файл

@ -64,7 +64,7 @@ jobs:
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/deploy-azure-webapps.yml поставляемый
Просмотреть файл

@ -34,7 +34,7 @@ jobs:
node-version: 20.x
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/deploy-storybook.yml поставляемый
Просмотреть файл

@ -27,7 +27,7 @@ jobs:
node-version: 20.x
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/nightly-cd.yml поставляемый
Просмотреть файл

@ -79,7 +79,7 @@ jobs:
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/publish-chromatic.yml поставляемый
Просмотреть файл

@ -34,7 +34,7 @@ jobs:
node-version: 20.x
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/stress-test-ui-tests.yml поставляемый
Просмотреть файл

@ -22,7 +22,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

2
.github/workflows/update-api-files.yml поставляемый
Просмотреть файл

@ -48,7 +48,7 @@ jobs:
node-version: '20.x'
# Try get node_modules from cache
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}

12
.github/workflows/update-snapshots.yml поставляемый
Просмотреть файл

@ -92,7 +92,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -188,7 +188,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -284,7 +284,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -380,7 +380,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -476,7 +476,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}
@ -572,7 +572,7 @@ jobs:
with:
node-version: '20.x'
- name: Restore node_modules from cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('common/config/rush/pnpm-lock.yaml') }}