Skip to content

Commit 1b7f5f9

Browse files
chore(github-actions): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent addbf06 commit 1b7f5f9

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
node-version: lts/*
1818

19-
- uses: actions/cache@v4
19+
- uses: actions/cache@v5
2020
with:
2121
path: ~/.npm
2222
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}

.github/workflows/release-components.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: 'lts/*'
3131
registry-url: 'https://registry.npmjs.org'
3232

33-
- uses: actions/cache@v4
33+
- uses: actions/cache@v5
3434
if: ${{ steps.release.outputs.components--release_created }}
3535
with:
3636
path: ~/.npm

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
node-version: lts/*
1818

19-
- uses: actions/cache@v4
19+
- uses: actions/cache@v5
2020
with:
2121
path: ~/.npm
2222
key: ${{ runner.os }}-node-${{ hashFiles('components/**/package-lock.json') }}
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
node-version: lts/*
5353

54-
- uses: actions/cache@v4
54+
- uses: actions/cache@v5
5555
with:
5656
path: ~/.npm
5757
key: ${{ runner.os }}-node-${{ hashFiles('components/**/package-lock.json') }}
@@ -74,7 +74,7 @@ jobs:
7474
with:
7575
node-version: lts/*
7676

77-
- uses: actions/cache@v4
77+
- uses: actions/cache@v5
7878
with:
7979
path: ~/.npm
8080
key: ${{ runner.os }}-node-${{ hashFiles('components/**/package-lock.json') }}
@@ -89,7 +89,7 @@ jobs:
8989
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').packages['node_modules/playwright'].version)")" >> $GITHUB_ENV
9090

9191
- name: Cache Playwright Browsers
92-
uses: actions/cache@v4
92+
uses: actions/cache@v5
9393
id: playwright-cache
9494
with:
9595
path: ~/.cache/ms-playwright

.github/workflows/update-snapshots.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
node-version: lts/*
2727

28-
- uses: actions/cache@v4
28+
- uses: actions/cache@v5
2929
with:
3030
path: ~/.npm
3131
key: ${{ runner.os }}-node-${{ hashFiles('components/**/package-lock.json') }}
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').packages['node_modules/playwright'].version)")" >> $GITHUB_ENV
4141

4242
- name: Cache Playwright Browsers
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
id: playwright-cache
4545
with:
4646
path: ~/.cache/ms-playwright

0 commit comments

Comments
 (0)