Skip to content

Commit

Permalink
fix: use node20 as runtime (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m authored Nov 15, 2023
1 parent f3a8d04 commit d881198
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
name: release
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: lts/*
- run: npm ci
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
name: "[TEST] README example"
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: lts/*
node-version: 20 # use same as runtime in action.yml
- run: npm ci
- run: npm run build
- name: Get latest release of ${{ github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ outputs:
popular_repositories:
description: "JSON string for user/organization login and total number of stars of public repositories the app is installed on"
runs:
using: "node16"
using: "node20"
main: "dist/index.js"

0 comments on commit d881198

Please sign in to comment.