From 007d8a98c4bb01c587c8b646e7b0570ec0bc5883 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 11:04:12 +0000 Subject: [PATCH] Bump actions/github-script from 7.0.1 to 8.0.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/60a0d83039c74a4aee543508d2ffcb1c3799cdea...ed597411d8f924073f98dfc5c65a23a2325f34cd) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/checkMergeCommits.yml | 2 +- .github/workflows/publishVersionCheckResults.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checkMergeCommits.yml b/.github/workflows/checkMergeCommits.yml index 1d4007520a9..262fd16592d 100644 --- a/.github/workflows/checkMergeCommits.yml +++ b/.github/workflows/checkMergeCommits.yml @@ -19,7 +19,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Update Message if: ${{ failure() }} - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 with: script: | core.setFailed('Please always use rebase to update your branch') diff --git a/.github/workflows/publishVersionCheckResults.yml b/.github/workflows/publishVersionCheckResults.yml index 8f5dfc893b4..703889f60f2 100644 --- a/.github/workflows/publishVersionCheckResults.yml +++ b/.github/workflows/publishVersionCheckResults.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Search version increment git patch - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 id: search-patch with: script: | @@ -43,7 +43,7 @@ jobs: persist-credentials: false #Opt out from persisting the default Github-token authentication in order to enable use of the bot's PAT when pushing below - name: Download version increment git patch - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 id: fetch-patch if: steps.search-patch.outputs.result with: @@ -103,7 +103,7 @@ jobs: direction: last - name: Add or update information comment - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 if: always() && steps.search-patch.outputs.result env: FILELIST: ${{ steps.git-commit.outputs.file-list }}