Skip to content

Commit 9ec9b96

Browse files
authored
Merge pull request #4 from Firenza/node16
Use node 16
2 parents e7eccee + ad3a9a5 commit 9ec9b96

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@ jobs:
1212
# To use this repository's private action,
1313
# you must check out the repository
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
16+
17+
- name: Setup NodeJS
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: 16
1621

1722
- name: Install packages
18-
run: npm install
23+
run: npm ci
1924

2025
- name: Run unit tests
2126
run: npm run test

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ inputs:
1515
description: "regex to select secret name text to make lower case"
1616
required: false
1717
runs:
18-
using: 'node12'
18+
using: 'node16'
1919
main: 'dist/index.js'

0 commit comments

Comments
 (0)