diff --git a/.github/workflows/cleanup-preview.yml b/.github/workflows/cleanup-preview.yml index bd65ee0..87c3ea0 100644 --- a/.github/workflows/cleanup-preview.yml +++ b/.github/workflows/cleanup-preview.yml @@ -58,7 +58,7 @@ jobs: continue-on-error: true - name: Comment Cleanup Status - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: SHOULD_CLEANUP: ${{ steps.cleanup_guard.outputs.should_cleanup }} SKIP_REASON: ${{ steps.cleanup_guard.outputs.reason }} diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index cd69d64..119bb28 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -66,7 +66,7 @@ jobs: - name: Comment on major updates if: steps.metadata.outputs.update-type == 'version-update:semver-major' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ @@ -87,7 +87,7 @@ jobs: }) - name: Label based on update type - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const updateType = '${{ steps.metadata.outputs.update-type }}'; diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index cfc9dfd..c17273f 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -121,7 +121,7 @@ jobs: - name: Comment Preview URL if: github.event_name == 'pull_request' - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: PREVIEW_URL: ${{ steps.preview_meta.outputs.preview_url }} SHOULD_DEPLOY: ${{ steps.deploy_guard.outputs.should_deploy }} diff --git a/.github/workflows/scheduled-checks.yml b/.github/workflows/scheduled-checks.yml index 2c1ab7e..518be92 100644 --- a/.github/workflows/scheduled-checks.yml +++ b/.github/workflows/scheduled-checks.yml @@ -38,7 +38,7 @@ jobs: - name: Create issue if URLs are broken if: failure() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const title = '🔗 Broken URLs detected in manifests';