From 4bdc1270f7f72a198c26433fe6c22cf405b6e467 Mon Sep 17 00:00:00 2001 From: "app-token-issuer-releng-renovate[bot]" <142360764+app-token-issuer-releng-renovate[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 00:23:44 +0000 Subject: [PATCH] Update actions/github-script action to v9 --- actions/crib-deploy-environment/action.yml | 2 +- actions/llm-action-error-reporter/action.yml | 2 +- actions/md-confluence-sync/action.yml | 2 +- actions/oci-image-bump/action.yml | 2 +- actions/pr-quality-check/action.yml | 14 +++++++------- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/actions/crib-deploy-environment/action.yml b/actions/crib-deploy-environment/action.yml index 9b8ed9e1..ce2a6509 100644 --- a/actions/crib-deploy-environment/action.yml +++ b/actions/crib-deploy-environment/action.yml @@ -327,7 +327,7 @@ runs: nix develop -c /bin/bash -c "devspace use namespace ${DEVSPACE_NAMESPACE} && devspace run ${{ inputs.command }} ${{ inputs.command-args }}" - name: Render notification template - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: render-slack-template if: failure() && inputs.crib-alert-slack-webhook != '' && inputs.send-alerts diff --git a/actions/llm-action-error-reporter/action.yml b/actions/llm-action-error-reporter/action.yml index 8be5a033..d3eeb130 100644 --- a/actions/llm-action-error-reporter/action.yml +++ b/actions/llm-action-error-reporter/action.yml @@ -196,7 +196,7 @@ runs: - name: post pr comment if: ${{ env.SKIP_ACTION == 'false' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: GH_TOKEN: ${{ inputs.gh-token }} PR_NUMBER: ${{ steps.get_pr_number.outputs.pr_number }} diff --git a/actions/md-confluence-sync/action.yml b/actions/md-confluence-sync/action.yml index 6ebe1370..43ed0037 100644 --- a/actions/md-confluence-sync/action.yml +++ b/actions/md-confluence-sync/action.yml @@ -59,7 +59,7 @@ runs: - name: Get default branch id: get_default_branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const repo = await github.rest.repos.get({ diff --git a/actions/oci-image-bump/action.yml b/actions/oci-image-bump/action.yml index 14a3e6d4..a6c428ab 100644 --- a/actions/oci-image-bump/action.yml +++ b/actions/oci-image-bump/action.yml @@ -193,7 +193,7 @@ runs: # an environment. - name: PR Closer if: ${{ inputs.pr-close-enabled == 'true' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: PR_URL: ${{ steps.create-pr.outputs.pull-request-url }} PR_NUM: ${{ steps.create-pr.outputs.pull-request-number }} diff --git a/actions/pr-quality-check/action.yml b/actions/pr-quality-check/action.yml index 616ad2fd..cf5fa9c2 100644 --- a/actions/pr-quality-check/action.yml +++ b/actions/pr-quality-check/action.yml @@ -159,7 +159,7 @@ runs: if: env.SHOULD_RUN == 'true' && github.event.action != 'closed' && steps.run-py.outputs.has-fix-candidates == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: FIX_CANDIDATES_PATH: ${{ steps.run-py.outputs.fix-candidates-path }} with: @@ -192,7 +192,7 @@ runs: if: env.SHOULD_RUN == 'true' && github.event.action != 'closed' && steps.run-py.outputs.has-fix-candidates == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: FP: ${{ steps.run-py.outputs.fix-candidates-fingerprint }} with: @@ -232,7 +232,7 @@ runs: steps.run-py.outputs.has-fix-candidates == 'true' && (inputs.claude-code-auto-fix-enabled != 'true' || steps.check-claude.outputs.should-run-claude != 'true') - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: DETAILS: ${{ steps.build-details.outputs.details }} MISSING: ${{ steps.check-claude.outputs.missing }} @@ -260,7 +260,7 @@ runs: steps.check-claude.outputs.should-run-claude == 'true' && steps.check-fingerprint.outputs.fingerprint-changed == 'true' && github.event.pull_request.head.repo.full_name == github.repository - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: DETAILS: ${{ steps.build-details.outputs.details }} TOTAL_DETECTED: ${{ steps.run-py.outputs.total-issues-detected }} @@ -472,7 +472,7 @@ runs: steps.check-claude.outputs.should-run-claude == 'true' && steps.check-fingerprint.outputs.fingerprint-changed == 'true' && github.event.pull_request.head.repo.full_name == github.repository - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: PR_NUMBER_CREATED: ${{ steps.create-autofix-pr.outputs.pull-request-number }} @@ -503,7 +503,7 @@ runs: steps.check-claude.outputs.should-run-claude == 'true' && steps.check-fingerprint.outputs.fingerprint-changed == 'true' && github.event.pull_request.head.repo.full_name == github.repository - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: COMMENT_ID: ${{ steps.post-comment.outputs.comment-id }} PR_URL: ${{ steps.create-autofix-pr.outputs.pull-request-url }} @@ -548,7 +548,7 @@ runs: # --- Cleanup flow (on PR close) --- - name: Cleanup orphaned auto-fix PRs if: env.SHOULD_RUN == 'true' && github.event.action == 'closed' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | console.log('🧹 Checking for orphaned auto-fix PRs...');