Skip to content

Commit

Permalink
chore(ci): switch CI to actions/cache@v3 (#536)
Browse files Browse the repository at this point in the history
## High Level Overview of Change

Title says it all.

### Context of Change

There were some warnings in CI.

### Type of Change

- [x] Tests (You added tests for code that already exists, or your new
feature included in this PR)

## Before / After

N/A

## Test Plan

Warnings go away.
  • Loading branch information
mvadari authored Jan 10, 2023
1 parent f6f65a0 commit 05f5904
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down

0 comments on commit 05f5904

Please sign in to comment.