Skip to content

Commit

Permalink
Bump actions/github-script from 6 to 7 (#53)
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

---
updated-dependencies:
- dependency-name: actions/github-script
  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>
  • Loading branch information
dependabot[bot] authored Dec 22, 2023
1 parent fa35d2d commit a483551
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Auto Approve PR
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.pulls.createReview({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "DATE=${DATE}" >> $GITHUB_ENV
echo "TAG=$(echo `git tag -l ${DATE}`)" >> $GITHUB_ENV
- name: Create Release
uses: actions/github-script@v6
uses: actions/github-script@v7
id: release
if: ${{ env.TAG }}
with:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
return release_id
- name: Upload Release Assets
uses: actions/github-script@v6
uses: actions/github-script@v7
if: ${{ steps.release.outputs.result }}
with:
github-token: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "DATE=v$(echo `date +'%Y.%m'`)" >> $GITHUB_ENV
echo "CHANGELOG=`git log --oneline $(git describe --tags v2021.08 --abbrev=0 @^ | head -n 1)..@`" >> $GITHUB_ENV
- name: Create Tag
uses: actions/github-script@v6
uses: actions/github-script@v7
if: ${{ env.DATE }}
with:
github-token: ${{ github.token }}
Expand Down

0 comments on commit a483551

Please sign in to comment.