Skip to content

Commit

Permalink
馃┕ fix deprecation warning:
Browse files Browse the repository at this point in the history
   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
  • Loading branch information
thomasmerz committed Dec 13, 2022
1 parent 9436c4d commit e4d957e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run.yml
Expand Up @@ -12,12 +12,12 @@ jobs:
- uses: actions/checkout@master

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@master
with:
node-version: "14.x"

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

0 comments on commit e4d957e

Please sign in to comment.