Skip to content

Commit e5ec6d8

Browse files
authored
Merge pull request #2210 from tf/cache-action-upgrade
Upgrade cache action to v4
2 parents 67991ea + bcf1e73 commit e5ec6d8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/reusable-workflow-rspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# Caching
4545

4646
- name: Set up cache for Bundler
47-
uses: actions/cache@v2
47+
uses: actions/cache@v4
4848
with:
4949
path: vendor/bundle
5050
key: ${{ runner.os }}-ruby-${{ matrix.ruby-version }}-gems-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}

.github/workflows/storybook.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# Caching
5757

5858
- name: Set up cache for Bundler
59-
uses: actions/cache@v2
59+
uses: actions/cache@v4
6060
with:
6161
path: vendor/bundle
6262
key: ${{ runner.os }}-gems-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
@@ -68,7 +68,7 @@ jobs:
6868
run: echo "::set-output name=dir::$(yarn cache dir)"
6969

7070
- name: Set up cache for Yarn
71-
uses: actions/cache@v2
71+
uses: actions/cache@v4
7272
with:
7373
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
7474
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# Caching
7272

7373
- name: Set up cache for Bundler
74-
uses: actions/cache@v2
74+
uses: actions/cache@v4
7575
with:
7676
path: vendor/bundle
7777
key: ${{ runner.os }}-ruby-${{ matrix.ruby-version }}-gems-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
@@ -83,7 +83,7 @@ jobs:
8383
run: echo "::set-output name=dir::$(yarn cache dir)"
8484

8585
- name: Set up cache for Yarn
86-
uses: actions/cache@v2
86+
uses: actions/cache@v4
8787
with:
8888
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
8989
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -178,7 +178,7 @@ jobs:
178178
run: echo "::set-output name=dir::$(yarn cache dir)"
179179

180180
- name: Set up cache for Yarn
181-
uses: actions/cache@v2
181+
uses: actions/cache@v4
182182
with:
183183
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
184184
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)