Skip to content

Commit 3285000

Browse files
chore: bump actions/github-script from 8 to 9 (#129)
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6f15932 commit 3285000

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
if: ${{ github.event_name == 'pull_request' }}
118118
steps:
119119
- name: Auto Approve PR
120-
uses: actions/github-script@v8
120+
uses: actions/github-script@v9
121121
with:
122122
script: |
123123
github.rest.pulls.createReview({
@@ -133,7 +133,7 @@ jobs:
133133
if: ${{ github.event_name == 'pull_request' }}
134134
steps:
135135
- name: Add Preview Label
136-
uses: actions/github-script@v8
136+
uses: actions/github-script@v9
137137
with:
138138
script: |
139139
github.rest.issues.addLabels({

.github/workflows/issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
comment:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/github-script@v8
10+
- uses: actions/github-script@v9
1111
with:
1212
script: |
1313
github.rest.issues.createComment({

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "DATE=${DATE}" >> $GITHUB_ENV
2727
echo "TAG=$(echo `git tag -l ${DATE}`)" >> $GITHUB_ENV
2828
- name: Create Release
29-
uses: actions/github-script@v8
29+
uses: actions/github-script@v9
3030
id: release
3131
if: ${{ env.TAG }}
3232
with:
@@ -61,7 +61,7 @@ jobs:
6161
return release_id
6262
6363
- name: Upload Release Assets
64-
uses: actions/github-script@v8
64+
uses: actions/github-script@v9
6565
if: ${{ steps.release.outputs.result }}
6666
with:
6767
github-token: ${{ github.token }}

.github/workflows/tagging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "DATE=v$(echo `date +'%Y.%m'`)" >> $GITHUB_ENV
3232
echo "CHANGELOG=`git log --oneline $(git describe --tags v2021.08 --abbrev=0 @^ | head -n 1)..@`" >> $GITHUB_ENV
3333
- name: Create Tag
34-
uses: actions/github-script@v8
34+
uses: actions/github-script@v9
3535
if: ${{ env.DATE }}
3636
with:
3737
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)