Skip to content

Conversation

@TingluoHuang
Copy link
Member

@TingluoHuang TingluoHuang commented Jul 7, 2025

Copilot AI review requested due to automatic review settings July 7, 2025 15:35
@TingluoHuang TingluoHuang requested a review from a team as a code owner July 7, 2025 15:35
Copy link
Contributor

Copilot AI 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 Node.js version used in the alpine build and refines a regex in the file-hashing utility to avoid matching double commas.

  • Refine regex in expand to use a negative lookahead, preventing matches on ,,
  • Bump NODE20_VERSION from 20.19.1 to 20.19.3

Reviewed Changes

Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.

File Description
src/Misc/layoutbin/hashFiles/index.js Updated regex from /,.*\}/ to /,(?!,).*\}/ to exclude ,,
src/Misc/externals.sh Bumped NODE20_VERSION to 20.19.3 for Node.js upgrade
Files not reviewed (1)
  • src/Misc/expressionFunc/hashFiles/package-lock.json: Language not supported

if (!isSequence && !isOptions) {
// {a},b}
if (m.post.match(/,.*\}/)) {
if (m.post.match(/,(?!,).*\}/)) {
Copy link
Member Author

Choose a reason for hiding this comment

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

this is changed by compiling the source file

}
},
"node_modules/brace-expansion": {
"version": "1.1.11",
Copy link
Member Author

Choose a reason for hiding this comment

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

this is changed by running npm audit fix

@TingluoHuang TingluoHuang merged commit 2091223 into main Jul 7, 2025
10 checks passed
@TingluoHuang TingluoHuang deleted the users/tihuang/nodeversion branch July 7, 2025 15:47
LouisHaftmann pushed a commit to falcondev-oss/github-actions-runner that referenced this pull request Aug 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants