fix(galactica): permit insecure pnpm-9.15.9 for opencloud - #404
Open
github-actions[bot] wants to merge 1 commit into
Open
fix(galactica): permit insecure pnpm-9.15.9 for opencloud#404github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
nixpkgs newly marks pnpm-9.15.9 as insecure (CVE-2026-48995 and others), which breaks galactica's toplevel eval because the opencloud service builds opencloud-idp-web with pnpm. Add pnpm-9.15.9 to permittedInsecurePackages to unblock the build.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What broke
The Build & Cache workflow failed on
master(commitddd6ef5). Only galactica failed to build; every other host was fine.Root cause — a real code failure, not CI infra noise:
The eval trace shows it comes in through the
opencloudservice:A recent nixpkgs bump started marking
pnpm-9.15.9as insecure (freshly published CVEs). Galactica'sopencloudmodule buildsopencloud-idp-web, which uses pnpm at build time, so the wholetopleveleval now refuses.Fix
Add
pnpm-9.15.9to galactica's existingnixpkgs.config.permittedInsecurePackageslist (this is build-time tooling for opencloud; the CVEs are in the pnpm CLI, not the served artifact). Scoped to galactica, the only host running opencloud.Verification
Diagnosed from the CI logs — no Nix toolchain is available in this environment to build/
just fmtlocally. The change is a single string appended to an already-formatted list with matching indentation, so alejandra formatting is unaffected. CI will confirm the galactica build.Other hosts
No other host failed in this run. The remaining log output was normal store-path copying, not errors.