Skip to content

Commit 14d2e53

Browse files
committed
(CONT-903) Address cache@v2 deprecation warnings
cache@v2 deprecation warnings were missed in the previous PR to remove deprecation warnings in this repo. This PR addresses these remaining warnings
1 parent 9756f74 commit 14d2e53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
ruby-version: "2.7"
4040

4141
- name: Cache gems
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: vendor/gems
4545
key: ${{ runner.os }}-pr-${{ hashFiles('**/Gemfile') }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
ruby-version: "2.7"
3939

4040
- name: Cache gems
41-
uses: actions/cache@v2
41+
uses: actions/cache@v3
4242
with:
4343
path: vendor/gems
4444
key: ${{ runner.os }}-pr-${{ hashFiles('**/Gemfile') }}

0 commit comments

Comments
 (0)