diff --git a/.github/workflows/assign-author.yml b/.github/workflows/assign-author.yml index 0d9e436..ecf8c21 100644 --- a/.github/workflows/assign-author.yml +++ b/.github/workflows/assign-author.yml @@ -29,7 +29,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: script: | const { owner, repo } = context.repo; diff --git a/.github/workflows/check-default-title.yml b/.github/workflows/check-default-title.yml index 0364456..1e16ffb 100644 --- a/.github/workflows/check-default-title.yml +++ b/.github/workflows/check-default-title.yml @@ -25,7 +25,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: script: | const isIssue = context.eventName === 'issues'; diff --git a/.github/workflows/close-needs-title.yml b/.github/workflows/close-needs-title.yml index 70d8443..a5b0ebc 100644 --- a/.github/workflows/close-needs-title.yml +++ b/.github/workflows/close-needs-title.yml @@ -15,7 +15,7 @@ jobs: permissions: issues: write steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: script: | const sevenDaysAgo = Date.now() - 7 * 24 * 60 * 60 * 1000; diff --git a/.github/workflows/pr-welcome-comment.yml b/.github/workflows/pr-welcome-comment.yml index 087caa7..314346c 100644 --- a/.github/workflows/pr-welcome-comment.yml +++ b/.github/workflows/pr-welcome-comment.yml @@ -25,7 +25,7 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: script: | const { owner, repo } = context.repo;