Skip to content

Commit 0fda41a

Browse files
build(deps): bump actions/github-script from 7 to 8 (#278)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 40dc898 commit 0fda41a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release-start.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: npm run check:fix
7171

7272
- name: Generate Changelog
73-
uses: actions/github-script@v7
73+
uses: actions/github-script@v8
7474
id: changelog
7575
env:
7676
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_READ_AND_MODELS }}
@@ -117,7 +117,7 @@ jobs:
117117
# Note: We can't change the head branch once a PR is opened. Thus we need to delete any branches
118118
# that exist from any existing open pull requests. (App Perm = Pull Request: Read + Write)
119119
- name: Close existing release pull requests
120-
uses: actions/github-script@v7
120+
uses: actions/github-script@v8
121121
with:
122122
github-token: ${{ steps.app-token.outputs.token }}
123123
script: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Extract version from PR body
2828
id: extract-version
29-
uses: actions/github-script@v7
29+
uses: actions/github-script@v8
3030
with:
3131
result-encoding: string
3232
script: |
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Extract release notes from PR body
4141
id: extract-release-notes
42-
uses: actions/github-script@v7
42+
uses: actions/github-script@v8
4343
with:
4444
result-encoding: string
4545
script: |
@@ -63,7 +63,7 @@ jobs:
6363
git push origin v${{ steps.extract-version.outputs.result }}
6464
6565
- name: Create GitHub Release via API
66-
uses: actions/github-script@v7
66+
uses: actions/github-script@v8
6767
with:
6868
script: |
6969
const owner = context.repo.owner;

0 commit comments

Comments
 (0)