From 990e23ca69f0b38fadcc749554c00974f3513572 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 06:11:32 +0000 Subject: [PATCH] chore(deps): 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/maintenance.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- .github/workflows/upstream-monitor.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/maintenance.yml b/.github/workflows/maintenance.yml index d7db8bf..5914d4f 100644 --- a/.github/workflows/maintenance.yml +++ b/.github/workflows/maintenance.yml @@ -144,7 +144,7 @@ jobs: - name: Create maintenance issue if needed if: steps.actions-check.outputs.outdated_found == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -212,7 +212,7 @@ jobs: actions: write steps: - name: Delete old workflow runs - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -251,7 +251,7 @@ jobs: } - name: Delete old artifacts - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -326,7 +326,7 @@ jobs: - name: Create security audit issue if needed if: env.security_issues_found == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 53807a9..2bccf46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -183,7 +183,7 @@ jobs: needs: [validate, create-release] steps: - name: Trigger Docker Build & Publish workflow - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -199,7 +199,7 @@ jobs: console.log('✅ Triggered Docker Build & Publish workflow'); - name: Wait for Docker build completion - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/upstream-monitor.yml b/.github/workflows/upstream-monitor.yml index 605680a..5d5f01b 100644 --- a/.github/workflows/upstream-monitor.yml +++ b/.github/workflows/upstream-monitor.yml @@ -92,7 +92,7 @@ jobs: - name: Check if recent update issue exists id: issue-check if: steps.version-check.outputs.new_version_available == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -118,7 +118,7 @@ jobs: - name: Create update notification issue if: steps.version-check.outputs.new_version_available == 'true' && steps.issue-check.outputs.should_create_issue == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -239,7 +239,7 @@ jobs: - name: Create base image update issue if: steps.baseimage-check.outputs.update_available == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |