Skip to content

Commit 04ba3c3

Browse files
Bump actions/github-script from 7 to 8
Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 61966d8 commit 04ba3c3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/auto_branching.yml

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

130130
- name: add the no-cherrypick label
131-
uses: actions/github-script@v7
131+
uses: actions/github-script@v8
132132
with:
133133
github-token: ${{ secrets._REPO_ADMIN_TOKEN }}
134134
script: |
@@ -200,7 +200,7 @@ jobs:
200200

201201

202202
- name: add the no-cherrypick label
203-
uses: actions/github-script@v7
203+
uses: actions/github-script@v8
204204
with:
205205
github-token: ${{ secrets._REPO_ADMIN_TOKEN }}
206206
script: |

.github/workflows/auto_cherry_pick.yml

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

7676
- name: is autoMerging enabled for Auto CherryPicked PRs ?
7777
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(github.event.pull_request.labels.*.name, 'AutoMerge_Cherry_Picked') }}
78-
uses: actions/github-script@v7
78+
uses: actions/github-script@v8
7979
with:
8080
github-token: ${{ secrets.CHERRYPICK_PAT }}
8181
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/Failed label, for new commit
2727
if: always() && ${{steps.prt.outputs.result}} == 'not_found'
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v8
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@v8
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@v8
6565
with:
6666
github-token: ${{ secrets.CHERRYPICK_PAT }}
6767
script: |

0 commit comments

Comments
 (0)