Skip to content

Commit

Permalink
Update default runtime to node16 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Feb 22, 2022
1 parent 5b0ae0e commit fb9a043
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-dist.yml
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set Node.js 12.x
- name: Set Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: 16.x

- name: Install dependencies
run: npm ci
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/licensed.yml
Expand Up @@ -14,11 +14,15 @@ jobs:
name: Check licenses
steps:
- uses: actions/checkout@v2
- name: Set Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- run: npm ci
- name: Install licensed
run: |
cd $RUNNER_TEMP
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.3.1/licensed-3.3.1-linux-x64.tar.gz
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.4.4/licensed-3.4.4-linux-x64.tar.gz
sudo tar -xzf licensed.tar.gz
sudo mv licensed /usr/local/bin/licensed
- run: licensed status
2 changes: 1 addition & 1 deletion .github/workflows/versions.yml
Expand Up @@ -78,7 +78,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
go: [1.7, 1.8.6]
go: [1.9, 1.8.6]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup node 12
- name: Setup node 16
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16
cache: npm

- name: npm ci
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -14,5 +14,5 @@ inputs:
description: Used to pull node distributions from go-versions. Since there's a default, this is typically not supplied by the user.
default: ${{ github.token }}
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'

0 comments on commit fb9a043

Please sign in to comment.