Skip to content
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
2 changes: 1 addition & 1 deletion .changeset/patch-refresh-gh-aw-node.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/smoke-goose.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions actions/setup/js/Dockerfile.safe-outputs-mcp
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,18 @@ ARG NPM_VERSION=11.19.0
# Intentional: upgrade all packages to pick up security fixes; downstream digest pins the result.
# After upgrading npm, patch its bundled dependencies to meet minimum safe versions.
# Install into a temp prefix (avoids npm's own private package.json) then overlay into npm's
# bundled node_modules: brace-expansion >= 5.0.8 (GHSA-mh99-v99m-4gvg), tar >= 7.5.22.
# bundled node_modules: brace-expansion >= 5.0.8 (GHSA-mh99-v99m-4gvg), tar >= 7.5.22,
# and undici >= 6.27.0 (GHSA-vxpw-j846-p89q).
RUN apk upgrade --no-cache \
&& apk add --no-cache git \
&& apk info -v | sort \
&& npm install --global "npm@${NPM_VERSION}" \
&& tmpdir=$(mktemp -d) \
&& npm --prefix "$tmpdir" install --no-save "tar@^7.5.22" "brace-expansion@^5.0.8" \
&& npm --prefix "$tmpdir" install --no-save "tar@^7.5.22" "brace-expansion@^5.0.8" "undici@^6.27.0" \
&& npm_modules="$(npm root -g)/npm/node_modules" \
&& cp -rf "$tmpdir/node_modules/brace-expansion/." "$npm_modules/brace-expansion/" \
&& cp -rf "$tmpdir/node_modules/tar/." "$npm_modules/tar/" \
&& cp -rf "$tmpdir/node_modules/undici/." "$npm_modules/undici/" \
&& rm -rf "$tmpdir" \
&& npm cache clean --force

Expand Down