Skip to content

Commit 290b9d1

Browse files
dbrattliclaude
andauthored
fix(ci): recompile repo-assist with gh-aw v0.71.1 and ignore in dependabot (#99)
Dependabot PR #96 bumped the github/gh-aw-actions setup SHA inside the auto-generated repo-assist.lock.yml without recompiling, leaving the lock file (compiled by gh-aw v0.68.3) wired to a v0.71.2 setup action that no longer ships copilot_driver.cjs at the expected path. The scheduled run failed with "Cannot find module copilot_driver.cjs". Recompile the workflow with gh-aw v0.71.1 so the lock file and the action SHAs it pins agree, and ignore github/gh-aw-actions in Dependabot so future bumps go through `gh aw upgrade` instead. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 54e1a67 commit 290b9d1

3 files changed

Lines changed: 136 additions & 84 deletions

File tree

.github/aw/actions-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"version": "v9",
1111
"sha": "373c709c69115d41ff229c7e5df9f8788daa9553"
1212
},
13-
"github/gh-aw-actions/setup@v0.68.3": {
13+
"github/gh-aw-actions/setup@v0.71.1": {
1414
"repo": "github/gh-aw-actions/setup",
15-
"version": "v0.68.3",
16-
"sha": "ba90f2186d7ad780ec640f364005fa24e797b360"
15+
"version": "v0.71.1",
16+
"sha": "239aec45b78c8799417efdd5bc6d8cc036629ec1"
1717
}
1818
}
1919
}

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ updates:
1111
interval: "weekly"
1212
commit-message:
1313
prefix: "chore"
14+
ignore:
15+
# Lock file (.github/workflows/repo-assist.lock.yml) is generated by
16+
# `gh aw compile`. Bumping action SHAs here without recompiling
17+
# desyncs the lock file from its compiler version and breaks the run.
18+
# Use `gh aw upgrade` to update gh-aw and regenerate the lock file.
19+
- dependency-name: "github/gh-aw-actions*"
1420
- package-ecosystem: "nuget" # See documentation for possible values
1521
directory: "/" # Location of package manifests
1622
schedule:

0 commit comments

Comments
 (0)