Skip to content

Commit ab9dc92

Browse files
authored
Merge pull request #473 from objectstack-ai/dependabot/github_actions/actions/cache-5
2 parents a1aeb14 + 86260b6 commit ab9dc92

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
6868
6969
- name: Setup pnpm cache
70-
uses: actions/cache@v4
70+
uses: actions/cache@v5
7171
with:
7272
path: ${{ env.STORE_PATH }}
7373
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -118,7 +118,7 @@ jobs:
118118
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
119119
120120
- name: Setup pnpm cache
121-
uses: actions/cache@v4
121+
uses: actions/cache@v5
122122
with:
123123
path: ${{ env.STORE_PATH }}
124124
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -180,15 +180,15 @@ jobs:
180180
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
181181
182182
- name: Setup pnpm cache
183-
uses: actions/cache@v4
183+
uses: actions/cache@v5
184184
with:
185185
path: ${{ env.STORE_PATH }}
186186
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
187187
restore-keys: |
188188
${{ runner.os }}-pnpm-store-
189189
190190
- name: Setup Next.js cache
191-
uses: actions/cache@v4
191+
uses: actions/cache@v5
192192
with:
193193
path: apps/docs/.next/cache
194194
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('apps/docs/**.[jt]s', 'apps/docs/**.[jt]sx', 'content/**/*.mdx') }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3636
3737
- name: Setup pnpm cache
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ${{ env.STORE_PATH }}
4141
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3333
3434
- name: Setup pnpm cache
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ${{ env.STORE_PATH }}
3838
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

.github/workflows/validate-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3939
4040
- name: Setup pnpm cache
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ${{ env.STORE_PATH }}
4444
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

0 commit comments

Comments
 (0)