Skip to content
Merged
Show file tree
Hide file tree
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
44 changes: 25 additions & 19 deletions pkg/cli/workflows/example-blocked-domains.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pkg/workflow/action_pins_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ func TestApplyActionPinToStep(t *testing.T) {
func TestGetActionPinsSorting(t *testing.T) {
pins := getActionPins()

// Verify we got all the pins (39 as of March 2026)
if len(pins) != 39 {
t.Errorf("getActionPins() returned %d pins, expected 39", len(pins))
// Verify we got all the pins (31 as of March 2026)
if len(pins) != 31 {
t.Errorf("getActionPins() returned %d pins, expected 31", len(pins))
}

// Verify they are sorted by version (descending) then by repository name (ascending)
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflow/compile_outputs_pr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ This workflow tests the create_pull_request job generation.
t.Error("Expected 'Download patch artifact' step in create_pull_request job")
}

if !strings.Contains(lockContentStr, "actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3") {
if !strings.Contains(lockContentStr, "actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c") {
t.Error("Expected download-artifact action to be used in create_pull_request job")
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/workflow/safe_output_helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ func TestBuildAgentOutputDownloadSteps(t *testing.T) {
"- name: Download agent output artifact",
"id: download-agent-output",
"continue-on-error: true",
"uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3",
"uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c",
"name: agent",
"path: /tmp/gh-aw/",
"- name: Setup agent output environment variable",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ jobs:
}
GH_AW_MCP_CONFIG_EOF
- name: Download activation artifact
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: activation
path: /tmp/gh-aw
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ jobs:
}
GH_AW_MCP_CONFIG_EOF
- name: Download activation artifact
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: activation
path: /tmp/gh-aw
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ jobs:
}
GH_AW_MCP_CONFIG_EOF
- name: Download activation artifact
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: activation
path: /tmp/gh-aw
Expand Down
Loading