chore(deps): ignore nvidia/cuda + node-major in Dependabot docker - #134
Merged
Conversation
The #96 'ignore this major version' only covered nvidia/cuda 13.x, so a MINOR 12.8→12.9 bump (#127) still slipped through — and it's just as broken, because the apt package name libcublas-12-8 in Dockerfile.cuda is pinned to 12.8. The CUDA base is deliberately managed (driver + scout-cuda), so ignore it entirely. node 24→26 (#129) also re-appeared after we deliberately chose node 24 (active LTS) in #92 — 26 is Current until ~2026-10. Ignore node semver-major so it stops recurring; adopt 26 by hand once it's LTS. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Extends the docker-ecosystem
ignorelist so two deliberately-managed base images stop generating un-mergeable Dependabot PRs.nvidia/cuda— ignore all updates. The apt package namelibcublas-12-8inDockerfile.cudais pinned to CUDA 12.8, so even a minor 12.8→12.9 bump (chore(deps): bump nvidia/cuda from 12.8.1-base-ubuntu24.04 to 12.9.2-base-ubuntu24.04 in /server #127) breaks the build; a real CUDA move needs the prod RTX 3090 driver +make scout-cuda. The earlier chore(deps): bump nvidia/cuda from 12.8.1-base-ubuntu24.04 to 13.3.0-base-ubuntu24.04 in /server #96@dependabot ignore this major versiononly blocked 13.x, letting the minor through.node— ignore semver-major. We deliberately chose node 24 (active LTS) over 26 in chore(deps): bump node from 20-alpine to 24-alpine (LTS) in /server #92; 26 is Current until ~2026-10. This stops the 24→26 re-proposal (chore(deps): bump node from 24-alpine to 26-alpine in /server #129); we'll adopt 26 by hand once it's LTS.Config is read from the default branch (
main); back-merged todevelop. Closes #127 and #129.🤖 Generated with Claude Code