From 2674c21cdae414adbfcb1f14aff7adf891870600 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 21:30:48 +0000 Subject: [PATCH 1/3] Initial plan From 130c960f32d16b93ca5e1bbe6efcee2e973a7cf0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 21:48:26 +0000 Subject: [PATCH 2/3] Initial plan to fix test failure Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/release.lock.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index 85e445009dc..d3c78451e6b 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -6272,13 +6272,13 @@ jobs: - name: Download Go modules run: go mod download - name: Generate SBOM (SPDX format) - uses: anchore/sbom-action@fbfd9c6c189226748411491745178e0c2017392d # v0 + uses: anchore/sbom-action@fbfd9c6c189226748411491745178e0c2017392d # v0.20.10 with: artifact-name: sbom.spdx.json format: spdx-json output-file: sbom.spdx.json - name: Generate SBOM (CycloneDX format) - uses: anchore/sbom-action@fbfd9c6c189226748411491745178e0c2017392d # v0 + uses: anchore/sbom-action@fbfd9c6c189226748411491745178e0c2017392d # v0.20.10 with: artifact-name: sbom.cdx.json format: cyclonedx-json From 734124a50aec07ee98dafd316d573d44c788f67a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 21:51:05 +0000 Subject: [PATCH 3/3] Fix TestGetActionPinsSorting to expect 27 pins The test was expecting 26 action pins, but the action_pins.json file contains 27 pins. Updated the test to match the actual count. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/action_pins_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/workflow/action_pins_test.go b/pkg/workflow/action_pins_test.go index d3381fab63e..bfdf62b5414 100644 --- a/pkg/workflow/action_pins_test.go +++ b/pkg/workflow/action_pins_test.go @@ -345,9 +345,9 @@ func TestApplyActionPinToStep(t *testing.T) { func TestGetActionPinsSorting(t *testing.T) { pins := getActionPins() - // Verify we got all the pins (should be 26 after adding cache/save action) - if len(pins) != 26 { - t.Errorf("getActionPins() returned %d pins, expected 26", len(pins)) + // Verify we got all the pins (should be 27 after adding github-script v8) + if len(pins) != 27 { + t.Errorf("getActionPins() returned %d pins, expected 27", len(pins)) } // Verify they are sorted by version (descending) then by repository name (ascending)