From 0a446db8395a9585451d33a594e3ab3215102d43 Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Wed, 12 Oct 2022 12:08:33 +0200 Subject: [PATCH] CI/GnuComment: update github-script action --- .github/workflows/GnuComment.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/GnuComment.yml b/.github/workflows/GnuComment.yml index 938897f09..d1e34807c 100644 --- a/.github/workflows/GnuComment.yml +++ b/.github/workflows/GnuComment.yml @@ -13,11 +13,11 @@ jobs: github.event.workflow_run.event == 'pull_request' steps: - name: 'Download artifact' - uses: actions/github-script@v3.1.0 + uses: actions/github-script@v6 with: script: | // List all artifacts from GnuTests - var artifacts = await github.actions.listWorkflowRunArtifacts({ + var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ owner: context.repo.owner, repo: context.repo.repo, run_id: ${{ github.event.workflow_run.id }}, @@ -27,7 +27,7 @@ jobs: var matchArtifact = artifacts.data.artifacts.filter((artifact) => { return artifact.name == "comment" })[0]; - var download = await github.actions.downloadArtifact({ + var download = await github.rest.actions.downloadArtifact({ owner: context.repo.owner, repo: context.repo.repo, artifact_id: matchArtifact.id, @@ -38,7 +38,7 @@ jobs: - run: unzip comment.zip - name: 'Comment on PR' - uses: actions/github-script@v3 + uses: actions/github-script@v6 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -46,7 +46,7 @@ jobs: var issue_number = Number(fs.readFileSync('./NR')); var content = fs.readFileSync('./result.txt'); if (content.toString().trim().length > 7) { // 7 because we have backquote + \n - await github.issues.createComment({ + await github.rest.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo, issue_number: issue_number,