Skip to content

Commit

Permalink
feat: 🎸 moved to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
diogofcunha committed May 24, 2024
1 parent b2c4f4b commit 0a8a8b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
build: # make sure build/ci work properly
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: |
yarn install
- run: |
yarn all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
github_token: ${{secrets.GH_PAT_TOKEN}}
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ACT Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{env.ACT}}
with:
path: ./confirm-checks-action
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.19.0
v20.10.0
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ inputs:
required: true

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/node": "^16.3.1",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.5.11",
"@typescript-eslint/parser": "^4.28.2",
"@vercel/ncc": "^0.28.6",
Expand Down

0 comments on commit 0a8a8b2

Please sign in to comment.