feat: sweep whuppi/ci refs to latest via upgrade-check#32
Merged
Conversation
This comment has been minimized.
This comment has been minimized.
chaudharydeepanshu
force-pushed
the
ci/whuppi-ci-refs-sweep
branch
from
July 24, 2026 00:01
d2648ad to
2a833b0
Compare
This comment has been minimized.
This comment has been minimized.
Dependabot's github-actions updater never reads uses: refs inside composite action.yml files (dependabot-core#6704), so a grouped bump splits a consumer's pin and pin-availability rejects it. Add a whuppi-ci-refs job to the reusable upgrade-check.yml that sed-sweeps every whuppi/ci ref (workflow and composite) to the latest release in one reviewed PR, keeping the pin uniform by construction.
chaudharydeepanshu
force-pushed
the
ci/whuppi-ci-refs-sweep
branch
from
July 24, 2026 00:16
2a833b0 to
871177a
Compare
This comment has been minimized.
This comment has been minimized.
slopfairy
approved these changes
Jul 24, 2026
slopfairy
left a comment
There was a problem hiding this comment.
Tip
Approved — both prior issues fixed, the new code is clean and correct
Both review threads from last round are addressed:
mapfilereplaced with the bash-3.2-portablewhile IFS= read -rarray fill- blanket
git add .githubreplaced with targeted staging via thefilesmultiline output — only the swept paths get staged
✅ Checked
latesttag is validated against^v[0-9]+\.[0-9]+\.[0-9]+$before sed interpolation — solid injection guardsed -i.bak+#delimiter is portable across GNU/BSD sed- process substitution
< <(...)and+=array append are both bash 3.2-compatible (macOS ships that bash) while readpiped fromprintfin the commit step only runsgit addas a side effect, no variable persistence needed across the subshell boundaryactions/checkoutpinned to full commit SHA; no untrustedgithub.event.*inrun:blocks; permissions arecontents: write+pull-requests: write— minimal@mainrefs are correctly left untouched (regex requires@vto match)- no-op cases (no refs found / refs already current) handled cleanly with
exit 0guards - CHANGELOG entry correctly bumps minor →
2.1.0for the additive job - UPDATING.md table + explanation are accurate
- PR title follows conventional commits:
feat: sweep whuppi/ci refs to latest via upgrade-check
No new issues found.
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
Adds a
whuppi-ci-refsjob to the reusableupgrade-check.yml. It sweeps everywhuppi/ci/…@vX.Y.Zref across a consumer's.github— workflow files and vendored compositeaction.ymls — to the latest release, in one reviewed draft PR.Why
Dependabot's github-actions updater never reads
uses:refs inside compositeaction.yml(dependabot-core#6704, open). A grouped bump moves only the workflow-level refs and splits a consumer's pin, which thepin-availabilitygate then rejects (the failure seen on pdf_manipulator:whuppi/ci refs span multiple versions: v2.0.4 v2.0.5). This job owns the bump instead and keeps the pin uniform by construction.Mirrors the existing
flutter-sdk/lockfilessweep pattern already in this workflow. Consumers dropwhuppi/ci*from their Dependabotgithub-actionsgroup once on this release.Verification
actionlintclean.v2.0.5,pin-availabilitypasses;@mainrefs untouched.MINOR — additive reusable-workflow job, no consumer action required for it to run.