Skip to content

Commit 4518bdf

Browse files
meta: bump actions/cache from 4.2.4 to 4.3.0
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 85a3788 commit 4518bdf

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Git Checkout
5454
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5555

56-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
56+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5757
with:
5858
path: ${{ github.workspace }}/apps/site/.next/cache
5959
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}

.github/workflows/lint-and-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5252

5353
- name: Restore Lint Cache
54-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
54+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5555
with:
5656
path: |
5757
.turbo/cache
@@ -101,7 +101,7 @@ jobs:
101101
(github.event_name == 'pull_request' &&
102102
startsWith(github.event.pull_request.head.ref, 'dependabot/') == false &&
103103
github.event.pull_request.head.ref != 'chore/crowdin')
104-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
104+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
105105
with:
106106
path: |
107107
.turbo/cache

.github/workflows/playwright-cloudflare-open-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Cache Playwright browsers
6060
id: playwright-cache
61-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
61+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6262
with:
6363
path: ~/.cache/ms-playwright
6464
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Cache Playwright browsers
8686
id: playwright-cache
87-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
87+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8888
with:
8989
path: ~/.cache/ms-playwright
9090
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}

.github/workflows/translations-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
fetch-depth: 2
7979

8080
- name: Restore Lint Cache
81-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
81+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8282
with:
8383
path: |
8484
apps/site/.eslintmdcache
@@ -129,7 +129,7 @@ jobs:
129129
branch: ${{ env.BRANCH_NAME }}
130130

131131
- name: Save Lint Cache
132-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
132+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
133133
with:
134134
path: |
135135
apps/site/.eslintmdcache

0 commit comments

Comments
 (0)