diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index d7c9ffd..69a2e54 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -59,7 +59,7 @@ jobs: - name: 3) Comment on PR if links broken if: failure() && github.event_name == 'pull_request' && env.REPORT_FAILURES == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const runUrl = `${context.payload.repository.html_url}/actions/runs/${context.runId}`; @@ -80,7 +80,7 @@ jobs: # WHY: Track broken links found during scheduled checks # OBS: Only creates issue if no open issue from github-actions bot exists if: failure() && github.event_name == 'schedule' && env.REPORT_FAILURES == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const owner = context.repo.owner;