Skip to content

Commit 41b9bf7

Browse files
authored
build(deps): bump actions/github-script from 7.0.1 to 8.0.0 (#4981)
2 parents 6130cc5 + e6caa97 commit 41b9bf7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ jobs:
389389
merge-multiple: true
390390

391391
- name: Update unstable git tag
392-
uses: actions/github-script@v7.0.1
392+
uses: actions/github-script@v8.0.0
393393
with:
394394
script: |
395395
const script = require('./.github/scripts/update-unstable-tag.cjs');
@@ -460,7 +460,7 @@ jobs:
460460
.github/scripts
461461
462462
- name: Remove label and comment
463-
uses: actions/github-script@v7.0.1
463+
uses: actions/github-script@v8.0.0
464464
env:
465465
BUILD_IMAGE_MANIFEST: ${{ needs.build-image.outputs.metadata }}
466466
with:

.github/workflows/merge-back.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
.github/scripts
3131
3232
- name: Push branch and open a PR
33-
uses: actions/github-script@v7.0.1
33+
uses: actions/github-script@v8.0.0
3434
env:
3535
SHA: ${{ inputs.sha }}
3636
with:

.github/workflows/release-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
.github/scripts
113113
114114
- name: Create a new release branch
115-
uses: actions/github-script@v7.0.1
115+
uses: actions/github-script@v8.0.0
116116
env:
117117
BRANCH: release/v${{ needs.compute-version.outputs.short }}
118118
SHA: ${{ needs.tag.outputs.sha }}

.github/workflows/release-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
.github/scripts
8383
8484
- name: Update the release branch
85-
uses: actions/github-script@v7.0.1
85+
uses: actions/github-script@v8.0.0
8686
env:
8787
BRANCH: "${{ github.ref_name }}"
8888
SHA: ${{ needs.tag.outputs.sha }}

.github/workflows/tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: cargo metadata --format-version 1
4747

4848
- name: Commit and tag using the GitHub API
49-
uses: actions/github-script@v7.0.1
49+
uses: actions/github-script@v8.0.0
5050
id: commit
5151
env:
5252
VERSION: ${{ inputs.version }}
@@ -58,7 +58,7 @@ jobs:
5858
return await script({ core, github, context });
5959
6060
- name: Update the refs
61-
uses: actions/github-script@v7.0.1
61+
uses: actions/github-script@v8.0.0
6262
env:
6363
VERSION: ${{ inputs.version }}
6464
TAG_SHA: ${{ fromJSON(steps.commit.outputs.result).tag }}

0 commit comments

Comments
 (0)