diff --git a/.github/workflows/auto_branching.yml b/.github/workflows/auto_branching.yml index 41f3140f..fce4d1ea 100644 --- a/.github/workflows/auto_branching.yml +++ b/.github/workflows/auto_branching.yml @@ -128,7 +128,7 @@ jobs: GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }} - name: add the no-cherrypick label - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets._REPO_ADMIN_TOKEN }} script: | @@ -200,7 +200,7 @@ jobs: - name: add the no-cherrypick label - uses: actions/github-script@v7 + uses: actions/github-script@v8 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 2919ef98..e2b95fe4 100644 --- a/.github/workflows/auto_cherry_pick.yml +++ b/.github/workflows/auto_cherry_pick.yml @@ -75,7 +75,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@v8 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | diff --git a/.github/workflows/prt_labels.yml b/.github/workflows/prt_labels.yml index fdcb33ac..4c22c71d 100644 --- a/.github/workflows/prt_labels.yml +++ b/.github/workflows/prt_labels.yml @@ -25,7 +25,7 @@ jobs: - name: remove the PRT Passed/Failed label, for new commit if: always() && ${{steps.prt.outputs.result}} == 'not_found' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: | diff --git a/.github/workflows/prt_result.yml b/.github/workflows/prt_result.yml index 93227fcf..f8987dd8 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@v8 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@v8 with: github-token: ${{ secrets.CHERRYPICK_PAT }} script: |