Skip to content

Commit

Permalink
Update runtime tonodjs@20 (#96)
Browse files Browse the repository at this point in the history
Co-authored-by: chrivier <christophe.rivier@moodys.com>
  • Loading branch information
ChristopheRivier and rivierch committed Jan 31, 2024
1 parent 8aee2f4 commit fbfc94b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
git tag --force v2 HEAD
git push --force origin v2
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
name: npm test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm test

Expand All @@ -24,7 +24,7 @@ jobs:
name: Native installer / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Test official installer (pinned version)
uses: ./
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
name: PyPI / ${{ matrix.os }} / ${{ matrix.python }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -104,12 +104,12 @@ jobs:
shell: bash
# Test sam init
- run: sam init --name sam-app --runtime nodejs14.x --dependency-manager npm --app-template hello-world
- run: sam init --name sam-app --runtime nodejs20.x --dependency-manager npm --app-template hello-world

# Test sam build
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "14"
node-version: "20"
- run: sam build
working-directory: ./sam-app

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ inputs:
required: false
default: false
runs:
using: "node16"
using: "node20"
main: "dist/index.js"

0 comments on commit fbfc94b

Please sign in to comment.