diff --git a/.github/workflows/add-reviewers.yml b/.github/workflows/add-reviewers.yml index 9b79290008..22c68b6ef7 100644 --- a/.github/workflows/add-reviewers.yml +++ b/.github/workflows/add-reviewers.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: 'Request reviewers' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/reviews.js') diff --git a/.github/workflows/issue-open-check.yml b/.github/workflows/issue-open-check.yml index aef1a90c38..eac1c2ee4d 100644 --- a/.github/workflows/issue-open-check.yml +++ b/.github/workflows/issue-open-check.yml @@ -12,7 +12,7 @@ jobs: steps: - name: check issue title id: check-issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const title = context.payload.issue.title; diff --git a/.github/workflows/remove-reviewers.yml b/.github/workflows/remove-reviewers.yml index bf509b07a8..3fe7493b93 100644 --- a/.github/workflows/remove-reviewers.yml +++ b/.github/workflows/remove-reviewers.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: 'Remove reviewers' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/remove-reviewers.js') diff --git a/.github/workflows/response.yml b/.github/workflows/response.yml index a8ea88765b..663ae6ad87 100644 --- a/.github/workflows/response.yml +++ b/.github/workflows/response.yml @@ -14,7 +14,7 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v4 - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/close_unresponsive.js') @@ -28,7 +28,7 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v4 - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/remove_response_label.js')