We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7eccee + ad3a9a5 commit 9ec9b96Copy full SHA for 9ec9b96
.github/workflows/ci.yml
@@ -12,10 +12,15 @@ jobs:
12
# To use this repository's private action,
13
# you must check out the repository
14
- name: Checkout
15
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
16
+
17
+ - name: Setup NodeJS
18
+ uses: actions/setup-node@v3
19
+ with:
20
+ node-version: 16
21
22
- name: Install packages
- run: npm install
23
+ run: npm ci
24
25
- name: Run unit tests
26
run: npm run test
action.yml
@@ -15,5 +15,5 @@ inputs:
description: "regex to select secret name text to make lower case"
required: false
runs:
- using: 'node12'
+ using: 'node16'
main: 'dist/index.js'
0 commit comments