From 0e80e46b8dbb517ebaa576f01ae744d4a9921388 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 21:34:43 +0000 Subject: [PATCH] chore: bump actions/github-script from 7 to 8 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/delete-branch.yml | 2 +- .github/workflows/pr-comment.yml | 2 +- .github/workflows/update-repository.yml | 6 +++--- .github/workflows/validate.yml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/delete-branch.yml b/.github/workflows/delete-branch.yml index c52202b..ff79b63 100644 --- a/.github/workflows/delete-branch.yml +++ b/.github/workflows/delete-branch.yml @@ -20,7 +20,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Add comment about deleted branch - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/pr-comment.yml b/.github/workflows/pr-comment.yml index 0ec59e3..bad4298 100644 --- a/.github/workflows/pr-comment.yml +++ b/.github/workflows/pr-comment.yml @@ -15,7 +15,7 @@ jobs: if: github.actor != 'dependabot[bot]' steps: - name: Add welcome comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/update-repository.yml b/.github/workflows/update-repository.yml index e8684fb..ff37529 100644 --- a/.github/workflows/update-repository.yml +++ b/.github/workflows/update-repository.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Check for validation-passed label id: check-label - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.APP_INSTALLATION_TOKEN }} script: | @@ -211,7 +211,7 @@ jobs: if: always() steps: - name: Remove validation-passed label - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.APP_INSTALLATION_TOKEN }} script: | @@ -239,7 +239,7 @@ jobs: if: always() steps: - name: Remove command-update label - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.APP_INSTALLATION_TOKEN }} script: | diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 0f0c423..8874ecd 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -52,7 +52,7 @@ jobs: - name: Post validation results if: failure() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -98,7 +98,7 @@ jobs: # Handle validation failure - remove label if it exists - name: Handle validation failure if: failure() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -146,7 +146,7 @@ jobs: - name: Mark validation success if: success() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |