ci: repin fleet-ci so this repo's own deny.toml is used again - #32
Merged
Conversation
The shared workflow's `deny-config-repo` input defaulted to SecurityRonin/fleet-config, so adopting it silently replaced this repo's supply-chain policy with the shared one. That is a real change to what `cargo deny` accepts, and no adoption PR disclosed it — nobody involved knew. Measured across the fleet when it was found: 61 of 65 adopted repos had a stricter local config. The shared one carries 21 advisory ignores against their `ignore = []`, every one a bare RUSTSEC id with no reason and no removal condition — which the fleet's own suppression rule forbids. Among them RUSTSEC-2023-0071 (rsa, Marvin timing attack). Several repos also went from `bans.multiple-versions = "deny"` to `"warn"` and gained nine allowed licences. fleet-ci now defaults to the repository's own deny.toml; opting into the shared config is explicit. This repin picks that up, restoring the policy this repo actually wrote. Reassuring rather than alarming: before this fix all 65 adopted repos were re-checked against their OWN deny.toml and all 65 passed. The gate was weakened, but nothing was hiding behind it. If this repin does turn a check red, that is a true finding this repo's own policy always meant to catch — fix it rather than re-pointing at the shared config. Only the pinned SHA changes.
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.
The shared workflow's
deny-config-repoinput defaulted toSecurityRonin/fleet-config, so adopting it silently replaced this repo's
supply-chain policy with the shared one. That is a real change to what
cargo denyaccepts, and no adoption PR disclosed it — nobody involved knew.Measured across the fleet when it was found: 61 of 65 adopted repos had a
stricter local config. The shared one carries 21 advisory ignores against their
ignore = [], every one a bare RUSTSEC id with no reason and no removalcondition — which the fleet's own suppression rule forbids. Among them
RUSTSEC-2023-0071 (rsa, Marvin timing attack). Several repos also went from
bans.multiple-versions = "deny"to"warn"and gained nine allowed licences.fleet-ci now defaults to the repository's own deny.toml; opting into the shared
config is explicit. This repin picks that up, restoring the policy this repo
actually wrote.
Reassuring rather than alarming: before this fix all 65 adopted repos were
re-checked against their OWN deny.toml and all 65 passed. The gate was weakened,
but nothing was hiding behind it. If this repin does turn a check red, that is a
true finding this repo's own policy always meant to catch — fix it rather than
re-pointing at the shared config.
Only the pinned SHA changes.