From 4f5b771f6cdc69dc44c988ce440132ea77e3c4ba Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 10:01:41 +0000 Subject: [PATCH] chore(deps): update actions/github-script action to v9 --- .github/workflows/angular-runtime-bump-notifier.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/angular-runtime-bump-notifier.yaml b/.github/workflows/angular-runtime-bump-notifier.yaml index 189710dc..a8818e99 100644 --- a/.github/workflows/angular-runtime-bump-notifier.yaml +++ b/.github/workflows/angular-runtime-bump-notifier.yaml @@ -40,7 +40,7 @@ jobs: uses: actions/checkout@v6 - name: Check conditions for failure notification id: check_label - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { owner, repo } = context.repo; @@ -80,7 +80,7 @@ jobs: core.setOutput("should_send_notif", shouldSendNotification ? "true" : "false"); - name: Create issue on failure if: ${{ steps.check_label.outputs.should_send_notif == 'true' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const ISSUE_LABEL = "framework-bump-failure";