From c9e9e04883037abdbf68197c4b2a74e8c90d2193 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 06:52:54 +0000 Subject: [PATCH] Bump actions/github-script from 7 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/auto_branching.yml | 4 ++-- .github/workflows/auto_cherry_pick.yml | 2 +- .github/workflows/auto_cherry_pick_merged.yaml | 6 +++--- .github/workflows/prt_labels.yml | 2 +- .github/workflows/prt_result.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/auto_branching.yml b/.github/workflows/auto_branching.yml index 6afb0cfa164..7c16cdf7527 100644 --- a/.github/workflows/auto_branching.yml +++ b/.github/workflows/auto_branching.yml @@ -168,7 +168,7 @@ jobs: GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }} - name: add the no-cherrypick label - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets._REPO_ADMIN_TOKEN }} script: | @@ -305,7 +305,7 @@ jobs: GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }} - name: add the no-cherrypick label - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets._REPO_ADMIN_TOKEN }} script: | diff --git a/.github/workflows/auto_cherry_pick.yml b/.github/workflows/auto_cherry_pick.yml index 301d9181b9d..9a81924c950 100644 --- a/.github/workflows/auto_cherry_pick.yml +++ b/.github/workflows/auto_cherry_pick.yml @@ -86,7 +86,7 @@ jobs: - name: is autoMerging enabled for Auto CherryPicked PRs ? if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(github.event.pull_request.labels.*.name, 'AutoMerge_Cherry_Picked') }} - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | diff --git a/.github/workflows/auto_cherry_pick_merged.yaml b/.github/workflows/auto_cherry_pick_merged.yaml index 18994aa7aa7..5fe8aed964e 100644 --- a/.github/workflows/auto_cherry_pick_merged.yaml +++ b/.github/workflows/auto_cherry_pick_merged.yaml @@ -35,7 +35,7 @@ jobs: steps: - name: Find parent PR details id: parentPR - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | @@ -75,7 +75,7 @@ jobs: steps: - name: Convert String to List id: conversion - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const branches = "${{ github.event.inputs.branches }}"; @@ -142,7 +142,7 @@ jobs: - name: is autoMerging enabled for Auto CherryPicked PRs ? if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(needs.get-parentPR-details.outputs.labels.*.name, 'AutoMerge_Cherry_Picked') }} - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | diff --git a/.github/workflows/prt_labels.yml b/.github/workflows/prt_labels.yml index 072a46ba196..17e2b674698 100644 --- a/.github/workflows/prt_labels.yml +++ b/.github/workflows/prt_labels.yml @@ -25,7 +25,7 @@ jobs: - name: remove the PRT Passed label, for new commit if: always() && ${{steps.prt.outputs.result}} == 'not_found' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | diff --git a/.github/workflows/prt_result.yml b/.github/workflows/prt_result.yml index 93227fcf272..a3ea35ace42 100644 --- a/.github/workflows/prt_result.yml +++ b/.github/workflows/prt_result.yml @@ -46,7 +46,7 @@ jobs: - name: Add the PRT passed/failed labels id: prt-status if: ${{ always() && github.event.inputs.build_status != '' }} - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | @@ -61,7 +61,7 @@ jobs: }); - name: Remove failed label on test pass or vice-versa if: ${{ always() && github.event.inputs.build_status != '' }} - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: |