From 61c1fa755e1fd4a4a3e9552e551abb54e422e22d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:24:57 +0000 Subject: [PATCH] :arrow_up: bump the actions group across 1 directory with 2 updates Bumps the actions group with 2 updates in the / directory: [actions/github-script](https://github.com/actions/github-script) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `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) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cleanup.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/welcome.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 9292968..4e6c85e 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Delete old workflow runs - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const workflowRuns = await github.rest.actions.listWorkflowRuns({ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0f53e2..3ad621c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: - name: Create GitHub Release if: steps.tag_check.outputs.skip == 'false' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: v${{ env.version }} name: v${{ env.version }} diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml index 21a065b..e05f535 100644 --- a/.github/workflows/welcome.yml +++ b/.github/workflows/welcome.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Welcome contributor - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { issue, pull_request, sender } = context.payload;