Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/workflow/runtime_setup_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ steps:
# Test workflow`,
expectSetup: []string{
"Setup Node.js",
"actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f",
"actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238",
"node-version: '24'",
},
Comment on lines 51 to 55
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test still hard-codes the pinned actions/setup-node SHA, which is what caused the failure when action_pins.json was updated. To avoid future breakage, consider deriving the expected SHA from the same source as the compiler (e.g., GetActionPinByRepo("actions/setup-node") and asserting on "actions/setup-node@"+pin.SHA, or using GetActionPin("actions/setup-node") and checking it’s present in the lock content). This would keep the integration test automatically in sync with pin updates (same applies to the other hard-coded action SHAs in this file).

Copilot uses AI. Check for mistakes.
},
Expand Down
Loading