diff --git a/.github/workflows/evaluate-submission.yml b/.github/workflows/evaluate-submission.yml index f2ac5e8..e00cd59 100644 --- a/.github/workflows/evaluate-submission.yml +++ b/.github/workflows/evaluate-submission.yml @@ -25,7 +25,7 @@ jobs: - name: Extract GitHub repo from issue body id: extract - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const body = context.payload.issue.body || ''; @@ -63,7 +63,7 @@ jobs: - name: Post evaluation comment if: steps.extract.outputs.repo != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); @@ -77,7 +77,7 @@ jobs: - name: Apply label and handle outcome if: steps.extract.outputs.repo != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const rec = '${{ steps.eval.outputs.recommendation }}'; @@ -112,7 +112,7 @@ jobs: - name: Post fallback comment (no repo found) if: steps.extract.outputs.repo == '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.issues.createComment({ @@ -153,7 +153,7 @@ jobs: - name: Re-evaluate incubator issues env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { execSync } = require('child_process');