Skip to content

Commit

Permalink
feat: upgrade from node 16 to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Mulqueen committed Feb 9, 2024
1 parent fb89cc3 commit da698d5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
success:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
- uses: JarvusInnovations/background-action@v1
with:
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci
- run: npm test

success:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
- run: npm install
- uses: ./
with:
Expand Down
2 changes: 1 addition & 1 deletion .holo/branches/github-action.lenses/build.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[hololens]
package = "holo/lens-npm-run/16"
package = "holo/lens-npm-run/20"

[hololens.npm_run]
env = "development"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ inputs:
default: true

runs:
using: 'node16'
using: 'node20'
main: 'index.js'
post: 'index.js'

0 comments on commit da698d5

Please sign in to comment.