Skip to content

Commit fb9a043

Browse files
Update default runtime to node16 (#192)
1 parent 5b0ae0e commit fb9a043

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/check-dist.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v2
2525

26-
- name: Set Node.js 12.x
26+
- name: Set Node.js 16.x
2727
uses: actions/setup-node@v2
2828
with:
29-
node-version: 12.x
29+
node-version: 16.x
3030

3131
- name: Install dependencies
3232
run: npm ci

.github/workflows/licensed.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,15 @@ jobs:
1414
name: Check licenses
1515
steps:
1616
- uses: actions/checkout@v2
17+
- name: Set Node.js 16.x
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: 16.x
1721
- run: npm ci
1822
- name: Install licensed
1923
run: |
2024
cd $RUNNER_TEMP
21-
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.3.1/licensed-3.3.1-linux-x64.tar.gz
25+
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.4.4/licensed-3.4.4-linux-x64.tar.gz
2226
sudo tar -xzf licensed.tar.gz
2327
sudo mv licensed /usr/local/bin/licensed
2428
- run: licensed status

.github/workflows/versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
fail-fast: false
7979
matrix:
8080
os: [macos-latest, windows-latest, ubuntu-latest]
81-
go: [1.7, 1.8.6]
81+
go: [1.9, 1.8.6]
8282
steps:
8383
- name: Checkout
8484
uses: actions/checkout@v2

.github/workflows/workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v2
2121

22-
- name: Setup node 12
22+
- name: Setup node 16
2323
uses: actions/setup-node@v2
2424
with:
25-
node-version: 12
25+
node-version: 16
2626
cache: npm
2727

2828
- name: npm ci

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ inputs:
1414
description: Used to pull node distributions from go-versions. Since there's a default, this is typically not supplied by the user.
1515
default: ${{ github.token }}
1616
runs:
17-
using: 'node12'
17+
using: 'node16'
1818
main: 'dist/index.js'

0 commit comments

Comments
 (0)