Skip to content

Commit 2091223

Browse files
authored
Upgrade node.js to latest version. (#3935)
1 parent 5969cbe commit 2091223

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

src/Misc/expressionFunc/hashFiles/package-lock.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Misc/externals.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NODE_URL=https://nodejs.org/dist
66
NODE_ALPINE_URL=https://github.com/actions/alpine_nodejs/releases/download
77
# When you update Node versions you must also create a new release of alpine_nodejs at that updated version.
88
# Follow the instructions here: https://github.com/actions/alpine_nodejs?tab=readme-ov-file#getting-started
9-
NODE20_VERSION="20.19.1"
9+
NODE20_VERSION="20.19.3"
1010

1111
get_abs_path() {
1212
# exploits the fact that pwd will print abs path when no args

src/Misc/layoutbin/hashFiles/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,7 @@ function expand(str, isTop) {
32993299
var isOptions = m.body.indexOf(',') >= 0;
33003300
if (!isSequence && !isOptions) {
33013301
// {a},b}
3302-
if (m.post.match(/,.*\}/)) {
3302+
if (m.post.match(/,(?!,).*\}/)) {
33033303
str = m.pre + '{' + m.body + escClose + m.post;
33043304
return expand(str);
33053305
}

0 commit comments

Comments
 (0)