diff --git a/.github/workflows/commit-convention.yml b/.github/workflows/commit-convention.yml index 24e504f1..b408646e 100644 --- a/.github/workflows/commit-convention.yml +++ b/.github/workflows/commit-convention.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check PR title - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | let title; diff --git a/.github/workflows/dependabot-clean-description.yml b/.github/workflows/dependabot-clean-description.yml index e87af29c..dc3d9d54 100644 --- a/.github/workflows/dependabot-clean-description.yml +++ b/.github/workflows/dependabot-clean-description.yml @@ -15,7 +15,7 @@ jobs: - run: npm install marked@latest - name: Rewrite PR description and post original as comment - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { marked } = require('marked'); diff --git a/.github/workflows/prettier-pr-comment.yml b/.github/workflows/prettier-pr-comment.yml index abc853dd..a5c22ba2 100644 --- a/.github/workflows/prettier-pr-comment.yml +++ b/.github/workflows/prettier-pr-comment.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write steps: - name: Check user permission - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: permission } = await github.rest.repos.getCollaboratorPermissionLevel({ @@ -32,7 +32,7 @@ jobs: - name: Get PR details id: pr-details - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: pr } = await github.rest.pulls.get({ @@ -48,7 +48,7 @@ jobs: } - name: Add reaction to acknowledge - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({ @@ -87,7 +87,7 @@ jobs: fi - name: Add completion reaction - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({