Skip to content

Commit eb927cb

Browse files
committed
Upgrade actions/cache to v4
1 parent 323d55c commit eb927cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
108108
'
109109
- name: Cache pnpm intermediate products
110-
uses: actions/cache@v3
110+
uses: actions/cache@v4
111111
with:
112112
path: "${{ steps.pnpm-cache-dir-path.outputs.dir }}"
113113
key: "${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}"
@@ -148,7 +148,7 @@ jobs:
148148
with:
149149
ruby-version: 3.0.2
150150
- name: Cache bundler intermediate products
151-
uses: actions/cache@v3
151+
uses: actions/cache@v4
152152
with:
153153
path: tests/vendor/bundle
154154
key: "${{ runner.os }}-gems-${{ hashFiles('tests/**/Gemfile.lock') }}"

ci/workflows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ workflows:
184184
echo "dir=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
185185
186186
- name: "Cache pnpm intermediate products"
187-
uses: actions/cache@v3
187+
uses: actions/cache@v4
188188
with:
189189
path: ${{ steps.pnpm-cache-dir-path.outputs.dir }}
190190
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -239,7 +239,7 @@ workflows:
239239
ruby-version: '3.0.2'
240240

241241
- name: "Cache bundler intermediate products"
242-
uses: actions/cache@v3
242+
uses: actions/cache@v4
243243
with:
244244
path: tests/vendor/bundle
245245
key: ${{ runner.os }}-gems-${{ hashFiles('tests/**/Gemfile.lock') }}

0 commit comments

Comments
 (0)