Compare commits

...

5 Commits

Author SHA1 Message Date
Patrick Ellis
9fd24f1f9d Merge pull request #334 from actions/thboop/updatetov4
Update to new v4 release
2022-03-01 12:22:48 -05:00
Thomas Boop
abae52fa24 Update to new v4 release 2022-03-01 12:12:44 -05:00
Thomas Boop
e1132f5ed5 Merge pull request #319 from actions/thboop/node16update
Update default runtime to node16
2022-02-28 16:14:47 -05:00
Thomas Boop
b0cc574b25 Update build_test.yml 2022-02-10 14:45:29 -05:00
Thomas Boop
c48e531900 Update default runtime to node16
Node 12 has an end of life on April 30, 2022.

This PR updates the default runtime to [node16](https://github.blog/changelog/2021-12-10-github-actions-github-hosted-runners-now-run-node-js-16-by-default/), rather then node12. 

This is supported on all Actions Runners v2.285.0 or later.
2022-02-07 14:01:14 -05:00
3 changed files with 4 additions and 4 deletions

View File

@@ -19,10 +19,10 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup node 14
- name: Setup node 16
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- run: npm install
- run: npm run build
- run: npm test

View File

@@ -97,7 +97,7 @@ jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v3
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
```

View File

@@ -14,5 +14,5 @@ inputs:
required: false
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'