Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
🩹 Issue 17: 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/checkout@v2
   Using version v3, latest or master: actions/checkout#689

   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
commit 0535d20b656281454da440b443ad50e959174756
6 changes: 3 additions & 3 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
run:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@master

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@master
with:
node-version: "16.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