Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Node.js to 20 #115

Merged
merged 1 commit into from
Mar 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: hmarr/debug-action@master
- name: checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
Comment on lines -18 to +19
Copy link
Contributor Author

@NotMyFault NotMyFault Feb 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to the underlying 16 -> 20 update but ensures workflows in this repository don't yield the same deprecation warning.

with:
node-version: "16"
node-version: "20"
- name: Install dependencies
run: yarn
- name: Format
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ouputs:
prDirtyStatuses:
description: "Object-map. The keys are pull request numbers and their values whether a PR is dirty or not."
runs:
using: "node16"
using: "node20"
main: "dist/index.js"
author: "Sebastian Silbermann"
branding:
Expand Down