Skip to content

Commit

Permalink
feature/update-to-node20 (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexndlm authored Mar 14, 2024
1 parent e8c0325 commit 35d224b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
#Version actions/checkout@V3.6.0
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
uses: actions/checkout@v4
- name: Node setup
#Version actions/setup-node@v3.8.1
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
uses: actions/setup-node@v4
with:
node-version: "18.16.1"
node-version: 20
- name: Run tests
run: |
npm ci
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
#Version actions/checkout@V3.6.0
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
uses: actions/checkout@v4
with:
ref: master
- name: Node setup
#Version actions/setup-node@v3.8.1
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
uses: actions/setup-node@v4
with:
node-version: "18.16.1"
node-version: 20
- name: Package
run: |
npm ci
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ outputs:
task-definition:
description: 'The path to the rendered task definition file'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

0 comments on commit 35d224b

Please sign in to comment.