diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 0aed740c..14b0df56 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -64,7 +64,7 @@ jobs: - name: Approve Pull Request if: steps.parse.outputs.bump_type != 'major' && steps.parse.outputs.bump_type != 'unknown' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.pulls.createReview({ @@ -77,7 +77,7 @@ jobs: - name: Enable Auto-Merge (Squash) if: steps.parse.outputs.bump_type != 'major' && steps.parse.outputs.bump_type != 'unknown' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.pulls.merge({ @@ -89,7 +89,7 @@ jobs: - name: Skip auto-merge for major updates if: steps.parse.outputs.bump_type == 'major' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ diff --git a/.github/workflows/lighthouse-ci.yml b/.github/workflows/lighthouse-ci.yml index 74c17dd9..10b0dd2b 100644 --- a/.github/workflows/lighthouse-ci.yml +++ b/.github/workflows/lighthouse-ci.yml @@ -128,7 +128,7 @@ jobs: - name: Comment results on PR if: github.event_name == 'pull_request' && always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs');