From 53f61f36a7ae1b4758e8d690ac499ea20e3c8930 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Apr 2026 02:02:30 +0000 Subject: [PATCH] Bump actions/github-script from 8 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/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] --- .github/workflows/simple-tag-and-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/simple-tag-and-release.yaml b/.github/workflows/simple-tag-and-release.yaml index 21b9603..894cadc 100644 --- a/.github/workflows/simple-tag-and-release.yaml +++ b/.github/workflows/simple-tag-and-release.yaml @@ -40,7 +40,7 @@ jobs: - name: Create release tag id: create_tag - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -63,7 +63,7 @@ jobs: - name: Delete release tag if workflow fails or is cancelled if: ${{ (failure() || cancelled()) && steps.create_tag.outcome == 'success' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -82,7 +82,7 @@ jobs: - name: Move/create major and latest tags if: ${{ success() }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |