Skip to content

Commit e433cdb

Browse files
committed
Update GitHub Actions to fix deprecated actions/cache@v2
- Update actions/cache from v2 to v4 - Update actions/checkout from v2 to v4 - Update actions/setup-node from v1 to v4
1 parent 1b2d567 commit e433cdb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
node-version: [ 16.x ]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727

2828
- name: Cache node modules
29-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3030
env:
3131
cache-name: cache-node-modules
3232
with:

0 commit comments

Comments
 (0)