Skip to content
Snippets Groups Projects
Commit 7cfb4506 authored by Justin Coyne's avatar Justin Coyne Committed by Chris Beer
Browse files

Upgrade github actions

The old actions are giving deprecation warnings:
> Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-node@v1. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
parent cc1eed0d
No related branches found
No related tags found
No related merge requests found
...@@ -17,9 +17,9 @@ jobs: ...@@ -17,9 +17,9 @@ jobs:
node-version: [14.x, 16.x, 18.x, 19.x] node-version: [14.x, 16.x, 18.x, 19.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1 uses: actions/setup-node@v2
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm install -g codecov - run: npm install -g codecov
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment