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";