Skip to content

Commit e4d957e

Browse files
committed
🩹 fix deprecation warning:
Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/setup-node@v2, actions/cache@v2 Using version v2.285.0, latest or master: actions/setup-node/pull/414 and actions/cache/pull/729
1 parent 9436c4d commit e4d957e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
- uses: actions/checkout@master
1313

1414
- name: Setup Node
15-
uses: actions/setup-node@v2
15+
uses: actions/setup-node@master
1616
with:
1717
node-version: "14.x"
1818

1919
- name: Cache dependencies
20-
uses: actions/cache@v2
20+
uses: actions/cache@master
2121
with:
2222
path: ~/.npm
2323
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)