Skip to content

Commit 969e2ea

Browse files
Bump node version (#30)
update action to use node v16
1 parent c9ca0b6 commit 969e2ea

File tree

5 files changed

+54
-17
lines changed

5 files changed

+54
-17
lines changed

.github/workflows/bat.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
name: Build and Test
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v1
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
1111
with:
12-
node-version: "12"
12+
node-version: 16
1313
- name: Perform npm tasks
1414
run: npm run ci
1515

1616
- name: Perform 'setup-matlab'
17-
uses: matlab-actions/setup-matlab@v0
17+
uses: matlab-actions/setup-matlab@v1
1818

1919
- name: Greet the world in style
2020
uses: ./

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
tag: ${{ steps.update-package-version.outputs.version }}
1313
steps:
1414
# Configure runner with the right stuff
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}
1818
- name: Configure git
1919
run: |
2020
git config user.name 'Release Action'
2121
git config user.email '<>'
22-
- uses: actions/setup-node@v1
22+
- uses: actions/setup-node@v3
2323
with:
24-
node-version: "12"
24+
node-version: 16
2525

2626
# Call `npm version`. It increments the version and commits the changes.
2727
# We'll save the output (new version string) for use in the following

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ inputs:
99
Script, function, or statement to execute
1010
required: true
1111
runs:
12-
using: node12
12+
using: node16
1313
main: dist/index.js

package-lock.json

Lines changed: 45 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lib/"
2020
],
2121
"dependencies": {
22-
"@actions/core": "^1.4.0",
22+
"@actions/core": "^1.10.0",
2323
"@actions/exec": "^1.1.0",
2424
"uuid": "^8.3.2"
2525
},

0 commit comments

Comments
 (0)