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/checkout@v2

   Using version v3, latest or master: actions/checkout#689
  • Loading branch information
thomasmerz committed Dec 13, 2022
1 parent f044c26 commit 36ec081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@master
- name: Use Node.js 12
uses: actions/setup-node@v1
uses: actions/setup-node@master
with:
node-version: '12.x'
- run: npm ci
Expand Down

0 comments on commit 36ec081

Please sign in to comment.