chore(deps): bump the actions group with 5 updates - #891
Merged
Merged
Conversation
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [ocaml/setup-ocaml](https://github.com/ocaml/setup-ocaml) | `3.8.0` | `3.9.0` | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.38.0` | `4.38.1` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.38.0` | `4.38.1` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.38.0` | `4.38.1` | | [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain) | `6c977a6ca4077a0ceb28ffbe03f59d46e9ac8772` | `02cb101ec7c40f2c49e1d9714d64511d8e1b74de` | Updates `ocaml/setup-ocaml` from 3.8.0 to 3.9.0 - [Release notes](https://github.com/ocaml/setup-ocaml/releases) - [Commits](ocaml/setup-ocaml@e89b2de...93303b6) Updates `github/codeql-action/init` from 4.38.0 to 4.38.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b96794f...1c5b675) Updates `github/codeql-action/analyze` from 4.38.0 to 4.38.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b96794f...1c5b675) Updates `github/codeql-action/upload-sarif` from 4.38.0 to 4.38.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b96794f...1c5b675) Updates `dtolnay/rust-toolchain` from 6c977a6ca4077a0ceb28ffbe03f59d46e9ac8772 to 02cb101ec7c40f2c49e1d9714d64511d8e1b74de - [Release notes](https://github.com/dtolnay/rust-toolchain/releases) - [Commits](dtolnay/rust-toolchain@6c977a6...02cb101) --- updated-dependencies: - dependency-name: ocaml/setup-ocaml dependency-version: 3.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: github/codeql-action/init dependency-version: 4.38.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action/analyze dependency-version: 4.38.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action/upload-sarif dependency-version: 4.38.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: dtolnay/rust-toolchain dependency-version: 02cb101ec7c40f2c49e1d9714d64511d8e1b74de dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
hyperpolymath
approved these changes
Sep 21, 2026
hyperpolymath
deleted the
dependabot/github_actions/actions-9777cc184e
branch
September 21, 2026 19:51
hyperpolymath
added a commit
that referenced
this pull request
Sep 21, 2026
…mp (#893) ## What broke The dependabot actions-group bump (#891, merged as `a521ed7`) moved five action pins in the workflows (ocaml/setup-ocaml, codeql-action init/analyze/upload-sarif, dtolnay/rust-toolchain) but did not regenerate `.github/workflows/actions.lock`. GitHub's dependency-lock validation now rejects **every caller pinned at any standards SHA ≥ the drift introduction** at workflow-parse time: ``` Invalid workflow file: .github/workflows/governance.yml#L33 error parsing called workflow "hyperpolymath/standards/.github/workflows/governance-reusable.yml@a521ed…": Invalid dependency lockfile "…/actions.lock@a521ed…": workflow ".github/workflows/governance-reusable.yml" references action "denoland/setup-deno@22d081f…" not present in the lockfile ``` Reproduced downstream on `hyperpolymath/empty-linter` PR #95 — governance and hypatia-scan wrappers both died before running. (Observed while following up on #892: no historical SHA is a clean pin — the hypatia validator repair `b77c53c` already carried the upload-sarif drift.) ## This fix Replaces the four stale per-workflow entries **and their pin metadata** (`ref` + `sha1-` commit digest in the second lock section — replacing only the list entry leaves the lock unreadable: "pin key ref … but commit digest … does not match") with the SHAs the workflows actually reference: | Workflow(s) | Stale lock entry | Resolved to (as referenced by the workflows) | |---|---|---| | affinescript-verify | `ocaml/setup-ocaml@e89b2de` | `@93303b6` | | codeql-reusable, hypatia-scan-reusable, scorecard-reusable | `github/codeql-action@b96794f` | `@1c5b675` | | mirror-reusable, rust-ci-reusable | `dtolnay/rust-toolchain@6c977a6` | `@02cb101` | **SHA pins were preserved deliberately.** The official tool's default fix was used for diagnosis, but it would rewrite the workflows' `uses:` lines to mutable semver tags (`@v4.38.1`, `@v1`) — contradicting the estate SHA-pin policy these very files document (and it added an unmanaged marker line to `tailscale-connect-reusable`). Its narrowing only fires on freshly pinned refs; with the metadata corrected, all four are "already-locked" and untouched by future regenerations. ## Verification ``` $ gh actions-lock --no-fix Scanning 53 workflows (no findings) ``` 53/53 workflows verify clean with this lockfile; zero workflow files are modified by this PR. ## Follow-up questions for maintainers (not done here) 1. Why didn't the estate's own `actions-lock-gate.yml` / hook chain catch #891's drift before merge? 2. Dependabot-bumped action pins need an `actions.lock` refresh in the same commit — worth a small workflow or bot comment that triggers regen on actions-group PRs. Once merged, pinned callers should move lockstep to this merge commit to pick up both the hypatia findings-validator repair (`b77c53c`, #892's warn whitelist) and parseable reusables again.
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.



Bumps the actions group with 5 updates:
3.8.03.9.04.38.04.38.14.38.04.38.14.38.04.38.16c977a6ca4077a0ceb28ffbe03f59d46e9ac877202cb101ec7c40f2c49e1d9714d64511d8e1b74deUpdates
ocaml/setup-ocamlfrom 3.8.0 to 3.9.0Release notes
Sourced from ocaml/setup-ocaml's releases.
Commits
93303b6Merge pull request #1133 from ocaml/prepare-3.9.0899d79aPrepare 3.9.02287f80Update dependencies and rebuild action bundles692cf40Merge pull request #1132 from ocaml/support-opam-2.65aab2ceSupport opam 2.6 and default to the HTTP repository2a5f442Merge pull request #1130 from ocaml/dependabot/github_actions/jdx/mise-action...ad0afcbBump jdx/mise-action from 4.2.5 to 4.3.0Updates
github/codeql-action/initfrom 4.38.0 to 4.38.1Release notes
Sourced from github/codeql-action/init's releases.
Changelog
Sourced from github/codeql-action/init's changelog.
... (truncated)
Commits
1c5b675Merge pull request #4152 from github/update-v4.38.1-a65b83a73a97cdcaAdd changelog entry for #4146cc6c691Update changelog for v4.38.1a65b83aMerge pull request #4146 from github/henrymercer/per-language-bundles-pr07fa87dClarify the latest-nightly eligibility exceptionf18f353Describe the bundle URL resolverecec9b5Share per-language telemetry fields without renaming79fe3a1Move download telemetry into the status-report directoryead1f7dRename the platform module549d498Simplify per-language platform eligibility checksUpdates
github/codeql-action/analyzefrom 4.38.0 to 4.38.1Release notes
Sourced from github/codeql-action/analyze's releases.
Changelog
Sourced from github/codeql-action/analyze's changelog.
... (truncated)
Commits
1c5b675Merge pull request #4152 from github/update-v4.38.1-a65b83a73a97cdcaAdd changelog entry for #4146cc6c691Update changelog for v4.38.1a65b83aMerge pull request #4146 from github/henrymercer/per-language-bundles-pr07fa87dClarify the latest-nightly eligibility exceptionf18f353Describe the bundle URL resolverecec9b5Share per-language telemetry fields without renaming79fe3a1Move download telemetry into the status-report directoryead1f7dRename the platform module549d498Simplify per-language platform eligibility checksUpdates
github/codeql-action/upload-sariffrom 4.38.0 to 4.38.1Release notes
Sourced from github/codeql-action/upload-sarif's releases.
Changelog
Sourced from github/codeql-action/upload-sarif's changelog.
... (truncated)
Commits
1c5b675Merge pull request #4152 from github/update-v4.38.1-a65b83a73a97cdcaAdd changelog entry for #4146cc6c691Update changelog for v4.38.1a65b83aMerge pull request #4146 from github/henrymercer/per-language-bundles-pr07fa87dClarify the latest-nightly eligibility exceptionf18f353Describe the bundle URL resolverecec9b5Share per-language telemetry fields without renaming79fe3a1Move download telemetry into the status-report directoryead1f7dRename the platform module549d498Simplify per-language platform eligibility checksUpdates
dtolnay/rust-toolchainfrom 6c977a6ca4077a0ceb28ffbe03f59d46e9ac8772 to 02cb101ec7c40f2c49e1d9714d64511d8e1b74deCommits
02cb101Merge pull request 185 from fufesou/feat/force-non-hostb38a663Pass --force-non-host unconditionallya4f61a0Document rustup non-host opt-in requirement06b350fSupport force-non-host toolchainsd103106Predefine branches up to 1.1203ea7b2dAdd 1.98.1 patch releaseDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions