Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update Action to use node24 runtime#1468

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
mikepenz merged 5 commits intodevelopfromcopilot/fix-1467
Aug 12, 2025
Merged

Conversation

Copy link
Contributor

CopilotAI commentedAug 12, 2025
edited
Loading

This PR updates the GitHub Action to use thenode24 runtime instead of the deprecatednode20 runtime.

Changes Made

  • action.yml: Updated the runtime fromusing: 'node20' tousing: 'node24'
  • .github/workflows/ci.yml: Updated the CI workflow to use Node.js 24.x for consistency with the action runtime

Testing

  • ✅ Project builds successfully with the new runtime
  • ✅ Linting passes without issues
  • ✅ Distribution files updated vianpm run package
  • ✅ Core functionality tests pass (3/4 tests, with 1 unrelated failure in offline mode)

The change is minimal and maintains full backward compatibility while ensuring the action uses the latest supported Node.js runtime in GitHub Actions.

Fixes#1467.

Warning

Firewall rules blocked me from connecting to one or more addresses

I tried to connect to the following addresses, but was blocked by firewall rules:

  • gitea.com
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (dns block)
  • https://api.github.com/graphql
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
    • Triggering command:node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/lib/main.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/compare/1.5.0...2.0.0
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/compare/2.0.0...3.0.0-a01
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/compare/2.0.0...3.0.1
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/releases/tags/1.5.0
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/releases/tags/2.0.0
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/releases/tags/3.0.0-a01
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)
  • https://api.github.com/repos/mikepenz/release-changelog-builder-action-playground/releases/tags/3.0.1
    • Triggering command:/usr/local/bin/node /home/REDACTED/work/release-changelog-builder-action/release-changelog-builder-action/node_modules/jest-worker/build/processChild.js (http block)

If you need me to access, download, or install something from one of these locations, you can either:


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Clickhere to start the survey.

Copy link
ContributorAuthor

@mikepenz 👋 This repository doesn't haveCopilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs.

I can generate a .github/copilot-instructions.md file for you automatically. Clickhere to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review.

CopilotAI changed the title[WIP] Update Action to usenode24 runtimeUpdate Action to use node24 runtimeAug 12, 2025
CopilotAI requested a review frommikepenzAugust 12, 2025 05:19
Copilot finished work on behalf ofmikepenzAugust 12, 2025 05:19
@mikepenz
Copy link
Owner

@copilot remove the unrelatedjunit.xml in this PR

Copy link
ContributorAuthor

@copilot remove the unrelatedjunit.xml in this PR

Removed the unrelatedjunit.xml file and added it to.gitignore to prevent future accidental commits of test output files. Commit:a1351a7

Copilot finished work on behalf ofmikepenzAugust 12, 2025 05:25
@mikepenzmikepenz marked this pull request as ready for reviewAugust 12, 2025 05:26
@github-actions
Copy link

github-actionsbot commentedAug 12, 2025
edited
Loading

TestsPassed ✅SkippedFailed
JUnit Test Report66 ran66 passed0 skipped0 failed
TestResult
No test annotations available

@mikepenzmikepenz requested a review fromCopilotAugust 12, 2025 05:26
Copy link

CopilotAI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR updates the GitHub Action to use the newernode24 runtime instead of the deprecatednode20 runtime, ensuring compatibility with the latest Node.js version supported by GitHub Actions.

Key changes:

  • Updated action runtime specification fromnode20 tonode24
  • Updated CI workflow to use Node.js 24.x for consistency with the action runtime

Reviewed Changes

Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.

FileDescription
action.ymlUpdates runtime specification to usenode24 instead ofnode20
.github/workflows/ci.ymlUpdates CI workflow to use Node.js 24.x for consistency

CopilotAIand others added5 commitsAugust 12, 2025 07:33
Co-authored-by: mikepenz <1476232+mikepenz@users.noreply.github.com>
Co-authored-by: mikepenz <1476232+mikepenz@users.noreply.github.com>
Co-authored-by: mikepenz <1476232+mikepenz@users.noreply.github.com>
@mikepenzmikepenz merged commitf991924 intodevelopAug 12, 2025
6 checks passed
@mikepenzmikepenz deleted the copilot/fix-1467 branchAugust 12, 2025 05:35
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

Copilot code reviewCopilotCopilot left review comments

@mikepenzmikepenzAwaiting requested review from mikepenz

Labels

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

Update Action to usenode24 runtime

2 participants

@mikepenz

[8]ページ先頭

©2009-2025 Movatter.jp