Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/bat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "12"
node-version: 16
- name: Perform npm tasks
run: npm run ci

- name: Perform 'setup-matlab'
uses: matlab-actions/setup-matlab@v0
uses: matlab-actions/setup-matlab@v1

- name: Greet the world in style
uses: ./
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
tag: ${{ steps.update-package-version.outputs.version }}
steps:
# Configure runner with the right stuff
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure git
run: |
git config user.name 'Release Action'
git config user.email '<>'
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: "12"
node-version: 16

# Call `npm version`. It increments the version and commits the changes.
# We'll save the output (new version string) for use in the following
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ inputs:
Script, function, or statement to execute
required: true
runs:
using: node12
using: node16
main: dist/index.js
53 changes: 45 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lib/"
],
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"uuid": "^8.3.2"
},
Expand Down