From 0ff23788cdb6826426239d3bb8f41ff85703abee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 20:27:01 +0000 Subject: [PATCH] build(deps): 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/check_base_image_update.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check_base_image_update.yml b/.github/workflows/check_base_image_update.yml index b13d7cf..3553d92 100644 --- a/.github/workflows/check_base_image_update.yml +++ b/.github/workflows/check_base_image_update.yml @@ -27,7 +27,7 @@ jobs: - name: Get Base Image Digests id: get_digests - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | /** @@ -74,7 +74,7 @@ jobs: - name: Check for Updated Versions id: check_updates - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | /** @@ -129,7 +129,7 @@ jobs: - name: Update Version Files if: steps.check_updates.outputs.need_update == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | /** @@ -163,7 +163,7 @@ jobs: - name: Create Pull Request if: steps.check_updates.outputs.need_update == 'true' id: create_pr - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | /** @@ -188,7 +188,7 @@ jobs: - name: Wait for PR Checks to Succeed if: steps.check_updates.outputs.need_update == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | /** @@ -224,7 +224,7 @@ jobs: - name: Approve the PR if: steps.check_updates.outputs.need_update == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.APERIM_GITHUB_CI_PAT }} # Use the PAT of a different user script: | @@ -248,7 +248,7 @@ jobs: - name: Merge the PR if: steps.check_updates.outputs.need_update == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.APERIM_GITHUB_CI_PAT }} # Use the same PAT script: | @@ -274,7 +274,7 @@ jobs: - name: Get Latest Release Tag id: get_latest_tag if: steps.check_updates.outputs.need_update == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | /** @@ -336,7 +336,7 @@ jobs: - name: Create Release id: create_release if: steps.check_updates.outputs.need_update == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.APERIM_GITHUB_CI_PAT }} script: |