From 21c9790489ead0b756729164bb53d568284ad663 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Dec 2023 19:15:54 +0000 Subject: [PATCH] Bump actions/github-script from 6 to 7 (#55) Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- .github/workflows/tagging.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 049c494..b756893 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} steps: - name: Auto Approve PR - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ github.token }} script: | @@ -79,7 +79,7 @@ jobs: # - name: Check out repository code # uses: actions/checkout@v4 # - name: Auto Merge PR - # uses: actions/github-script@v6 + # uses: actions/github-script@v7 # with: # github-token: ${{ github.token }} # script: | diff --git a/.github/workflows/tagging.yml b/.github/workflows/tagging.yml index e762a52..d34309c 100644 --- a/.github/workflows/tagging.yml +++ b/.github/workflows/tagging.yml @@ -26,7 +26,7 @@ jobs: echo "DATE=v$(echo `date +'%Y.%m'`)" >> $GITHUB_ENV echo "CHANGELOG=`git log --oneline $(git describe --tags @ --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 }}