Skip to content

Commit 3aff318

Browse files
chore: bump actions/github-script from 7 to 8
Bump actions/github-script from version 7 to 8 in GitHub Actions workflows. - Updates workflows: docker.yml, issues.yml, release.yml, tagging.yml - See PR #119 for details. Signed-off-by: dependabot[bot] <support@github.com>
1 parent bc287f5 commit 3aff318

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@v7
120+
uses: actions/github-script@v8
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@v7
136+
uses: actions/github-script@v8
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@v7
10+
- uses: actions/github-script@v8
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@v7
29+
uses: actions/github-script@v8
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@v7
64+
uses: actions/github-script@v8
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@v7
34+
uses: actions/github-script@v8
3535
if: ${{ env.DATE }}
3636
with:
3737
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)