Fix reviewer workflow: recompile lock file and ignore gh-aw-actions in Dependabot#504
Merged
Merged
Conversation
The lock file was compiled with v0.68.3 but the setup action had been bumped to v0.74.1, creating a version mismatch that caused copilot_driver.cjs to not be found at runtime. Recompiling brings all components into alignment: - Setup action: v0.72.1 - Copilot CLI: 1.0.40 - Firewall: 0.25.41 - MCP Gateway: v0.3.6 - GitHub MCP Server: v1.0.3 - Container images now digest-pinned Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refreshes the generated gh-aw lock files for the dotnes PR Reviewer workflow so the compiled workflow, setup action, Copilot CLI, firewall, MCP gateway, and pinned container images align on gh-aw v0.72.1.
Changes:
- Recompiled
.github/workflows/dotnes-reviewer.lock.ymlwith gh-aw v0.72.1. - Updated pinned action/container versions and generated runtime steps.
- Updated
.github/aw/actions-lock.jsonentries for the gh-aw setup action and GitHub Script action.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/dotnes-reviewer.lock.yml |
Regenerated PR reviewer workflow lock with updated gh-aw runtime, action pins, CLI/firewall/MCP versions, and container digests. |
.github/aw/actions-lock.json |
Updates locked action SHAs used by the generated workflow. |
This was referenced May 17, 2026
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.
Problem
The
dotnes PR Reviewerworkflow was consistently failing with:Failing run: https://github.com/jonathanpeppers/dotnes/actions/runs/25993796204
Root cause: Dependabot PR #495 bumped only the
github/gh-aw-actions/setupSHA from v0.68.3 to v0.74.1 without recompiling the full lock file. This left the Copilot CLI at v1.0.21 and containers at old versions, creating a mismatch where the setup action expected files that weren't installed.Fix
dotnes-reviewer.lock.ymlwithgh aw compile(v0.72.1) — brings all components into alignmentgithub/gh-aw-actionsin Dependabot — prevents this class of breakage from recurringThe gh-aw lock file must always be updated as a whole via
gh aw compile, not via partial SHA bumps.Filed upstream: github/gh-aw#32893