From 48e0d76a8a12b0e568df59a6dcfc401a6be9e70f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 20:16:31 +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/deploy.yml | 6 +++--- .github/workflows/preview.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c5d66ef..6807eee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,7 +31,7 @@ jobs: - name: Create deployment if: inputs.use-deployment-api id: deployment - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const deployment = await github.rest.repos.createDeployment({ @@ -95,7 +95,7 @@ jobs: - name: Update deployment status (success) if: success() && inputs.use-deployment-api - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createDeploymentStatus({ @@ -109,7 +109,7 @@ jobs: - name: Update deployment status (failure) if: failure() && inputs.use-deployment-api - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createDeploymentStatus({ diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index bfcf289..3884206 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -91,7 +91,7 @@ jobs: caddy reload --config /etc/caddy/Caddyfile - name: Post preview URL - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const previewDomain = `pr-${{ github.event.number }}.preview.${{ secrets.PREVIEW_DOMAIN }}`;