From 4171f5e187c27cd049cde2d97bff2425b0409652 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 11:08:39 +0000 Subject: [PATCH] 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/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 17b87aa..d374b33 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -60,7 +60,7 @@ jobs: - name: Create GitHub Deployment (Staging) if: github.ref == 'refs/heads/staging' id: deployment_staging - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const deployment = await github.rest.repos.createDeployment({ @@ -77,7 +77,7 @@ jobs: - name: Create GitHub Deployment (Production) if: github.ref == 'refs/heads/main' id: deployment_production - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const deployment = await github.rest.repos.createDeployment({ @@ -114,7 +114,7 @@ jobs: - name: Update Deployment Status (Staging Success) if: github.ref == 'refs/heads/staging' && success() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.repos.createDeploymentStatus({ @@ -128,7 +128,7 @@ jobs: - name: Update Deployment Status (Production Success) if: github.ref == 'refs/heads/main' && success() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.repos.createDeploymentStatus({ @@ -142,7 +142,7 @@ jobs: - name: Update Deployment Status (Staging Failure) if: github.ref == 'refs/heads/staging' && failure() && steps.deployment_staging.outputs.result - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.repos.createDeploymentStatus({ @@ -155,7 +155,7 @@ jobs: - name: Update Deployment Status (Production Failure) if: github.ref == 'refs/heads/main' && failure() && steps.deployment_production.outputs.result - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.repos.createDeploymentStatus({