From 9be338c8db5b3aa2afe618fd2703367691bdb970 Mon Sep 17 00:00:00 2001 From: Juergen Klaassen Date: Tue, 26 May 2026 06:54:49 -0600 Subject: [PATCH] =?UTF-8?q?ci:=20bump=20actions/github-script=20v7=20?= =?UTF-8?q?=E2=86=92=20v9=20in=20release=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every release run since 1.16.0 (2026-04-28) has failed with: An action could not be found at the URI 'https://codeload.github.com/actions/github-script/tar.gz/' actions/github-script latest is v9.0.0 (published 2026-04-09); GHA's resolution of @v7 has been intermittently broken for our workflow since around then. Our usage (core.info / core.setFailed / core.setOutput, github.paginate, github.rest.repos.listTags) is backwards-compatible across v7 / v8 / v9, so the bump is safe. The first PR to merge after this lands will trigger the (now-working) release workflow and produce v1.17.0 with auto-generated notes covering every PR since 1.16.0: - Ed25519 op-envelope signing (KLA-411) - Touch ID step-up (KLA-412) - Self-describing step-up errors (KLA-417) - device_view MCP App (KLA-404) - compliance_view MCP App (KLA-405) - recipe_runner_view + recipe_run execute path (KLA-406) - Webhook out-of-band approval (KLA-413, closes KLA-408 trilogy) - Recipe edit via $EDITOR (KLA-399) - CI label-check workflow Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6926658..46b4b4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Parse PR labels id: labels - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const valid = ['major', 'minor', 'patch', 'no version']; @@ -78,7 +78,7 @@ jobs: - name: Compute next version id: bump - uses: actions/github-script@v7 + uses: actions/github-script@v9 env: RELEASE_TYPE: ${{ needs.Check-PR-Labels.outputs.RELEASE_TYPE }} with: