Skip to content

Commit c9e9e04

Browse files
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](actions/github-script@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] <support@github.com>
1 parent 58b06f9 commit c9e9e04

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/auto_branching.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }}
169169

170170
- name: add the no-cherrypick label
171-
uses: actions/github-script@v7
171+
uses: actions/github-script@v9
172172
with:
173173
github-token: ${{ secrets._REPO_ADMIN_TOKEN }}
174174
script: |
@@ -305,7 +305,7 @@ jobs:
305305
GITHUB_TOKEN: ${{ secrets._REPO_ADMIN_TOKEN }}
306306

307307
- name: add the no-cherrypick label
308-
uses: actions/github-script@v7
308+
uses: actions/github-script@v9
309309
with:
310310
github-token: ${{ secrets._REPO_ADMIN_TOKEN }}
311311
script: |

.github/workflows/auto_cherry_pick.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686

8787
- name: is autoMerging enabled for Auto CherryPicked PRs ?
8888
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(github.event.pull_request.labels.*.name, 'AutoMerge_Cherry_Picked') }}
89-
uses: actions/github-script@v7
89+
uses: actions/github-script@v9
9090
with:
9191
github-token: ${{ secrets.CHERRYPICK_PAT }}
9292
script: |

.github/workflows/auto_cherry_pick_merged.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- name: Find parent PR details
3737
id: parentPR
38-
uses: actions/github-script@v7
38+
uses: actions/github-script@v9
3939
with:
4040
github-token: ${{ secrets.CHERRYPICK_PAT }}
4141
script: |
@@ -75,7 +75,7 @@ jobs:
7575
steps:
7676
- name: Convert String to List
7777
id: conversion
78-
uses: actions/github-script@v7
78+
uses: actions/github-script@v9
7979
with:
8080
script: |
8181
const branches = "${{ github.event.inputs.branches }}";
@@ -142,7 +142,7 @@ jobs:
142142

143143
- name: is autoMerging enabled for Auto CherryPicked PRs ?
144144
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(needs.get-parentPR-details.outputs.labels.*.name, 'AutoMerge_Cherry_Picked') }}
145-
uses: actions/github-script@v7
145+
uses: actions/github-script@v9
146146
with:
147147
github-token: ${{ secrets.CHERRYPICK_PAT }}
148148
script: |

.github/workflows/prt_labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: remove the PRT Passed label, for new commit
2727
if: always() && ${{steps.prt.outputs.result}} == 'not_found'
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v9
2929
with:
3030
github-token: ${{ secrets.CHERRYPICK_PAT }}
3131
script: |

.github/workflows/prt_result.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Add the PRT passed/failed labels
4747
id: prt-status
4848
if: ${{ always() && github.event.inputs.build_status != '' }}
49-
uses: actions/github-script@v7
49+
uses: actions/github-script@v9
5050
with:
5151
github-token: ${{ secrets.CHERRYPICK_PAT }}
5252
script: |
@@ -61,7 +61,7 @@ jobs:
6161
});
6262
- name: Remove failed label on test pass or vice-versa
6363
if: ${{ always() && github.event.inputs.build_status != '' }}
64-
uses: actions/github-script@v7
64+
uses: actions/github-script@v9
6565
with:
6666
github-token: ${{ secrets.CHERRYPICK_PAT }}
6767
script: |

0 commit comments

Comments
 (0)