From c80d564816b8efb99467940bb67790e2ff2f9d66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 15:43:17 +0000 Subject: [PATCH] build(deps): Bump actions/github-script from 6 to 7 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] --- .github/workflows/tag-major.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tag-major.yml b/.github/workflows/tag-major.yml index e5987cc..f2d14c7 100644 --- a/.github/workflows/tag-major.yml +++ b/.github/workflows/tag-major.yml @@ -18,7 +18,7 @@ jobs: echo "major=$MAJOR" >> $GITHUB_OUTPUT - name: Delete existing tag continue-on-error: true - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | await github.rest.git.deleteRef({ @@ -27,7 +27,7 @@ jobs: ref: `tags/v${{ steps.version.outputs.major }}`, }); - name: Create tag - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const newTag = "v${{ steps.version.outputs.major }}";