From d3c437020a2393eccea20abcce0b02e6bf293b62 Mon Sep 17 00:00:00 2001 From: Landon Cox Date: Tue, 26 May 2026 21:27:01 -0700 Subject: [PATCH] fix(test): update smoke-claude test to match v0.76.1 action pin The gh-aw upgrade to v0.76.1 changed the setup action SHA but the test still expected the old v0.75.4 pin. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- scripts/ci/smoke-claude-workflow.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/smoke-claude-workflow.test.ts b/scripts/ci/smoke-claude-workflow.test.ts index b1c50b79a..9456884e7 100644 --- a/scripts/ci/smoke-claude-workflow.test.ts +++ b/scripts/ci/smoke-claude-workflow.test.ts @@ -40,9 +40,9 @@ describe('smoke claude workflow optimization config', () => { expect(lock).toContain('Export workflow context'); expect(lock).toContain('Report turn usage'); expect(lock).toContain( - 'github/gh-aw-actions/setup@9f050961da586148d135e113d8bb025185cdf2b8 # v0.75.4' + 'github/gh-aw-actions/setup@46d564922b082d0db93244972e8005ea6904ee5f # v0.76.1' ); - expect(lock).not.toContain('github/gh-aw-actions/setup@v0.75.4'); + expect(lock).not.toContain('github/gh-aw-actions/setup@v0.76.1'); expect(lock).not.toContain('mcp__playwright__browser_navigate'); expect(lock).not.toContain('playwright_prompt.md'); expect(lock).not.toContain('mcr.microsoft.com/playwright/mcp');