[WIP] fix(ci): resolve release failure for budge#2317
Draft
Conversation
Agent-Logs-Url: https://github.com/trueforge-org/containerforge/sessions/1f824a86-f106-4284-afbe-5a822cc22080 Co-authored-by: Crow-Control <7613738+Crow-Control@users.noreply.github.com>
Copilot stopped work on behalf of
Crow-Control due to an error
May 7, 2026 10:41
Copilot stopped work on behalf of
Crow-Control due to an error
May 7, 2026 11:47
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.
Refs #2310 (release autofix issue for budge run 25485480759)
Failed CI run: https://github.com/trueforge-org/containerforge/actions/runs/25485480759
Root cause
The
python-nodebase was upgraded from 3.13 → 3.14.4, bumping Node.js from 22 → 24. budge's backend (linuxserver/budgev0.0.9) declaresbcrypt ^5.0.1. bcrypt 5.x ships an oldnode-addon-apiwhosenapi.his incompatible with Node 24's V8 / NAPI headers (expected unqualified-id before ')' token, etc.). On amd64 a prebuiltnapi-v3binary is fetched so the source build is skipped; on arm64 node-pre-gyp falls back to compiling and the build fails.Fix
Before
npm installinapps/budge/Dockerfile, set the direct dependency tobcrypt ^6.0.0vianpm pkg set. bcrypt 6.x supports Node 24 and ships prebuilt napi binaries for arm64. The bcrypt API surface used by budge (bcrypt.hash/bcrypt.compare) is unchanged between v5 and v6.Checklist
node-addon-apicompile error in bcrypt)apps/budge/docker buildx bake --printvalidatedlinux/arm64build succeeded locally with the fixDockerfileanddocker-bake.hcl(no version bump)/configfor data)