From: Tomas Mraz Date: Wed, 9 Nov 2022 12:55:56 +0000 (+0100) Subject: fips-label.yml: Fix the script after actions/github-script upgrade X-Git-Tag: openssl-3.2.0-alpha1~1774 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ada6f0533d3299833b27e623ff1bfe3134e8e466;p=thirdparty%2Fopenssl.git fips-label.yml: Fix the script after actions/github-script upgrade Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/19636) --- diff --git a/.github/workflows/fips-label.yml b/.github/workflows/fips-label.yml index 7563352b3e1..bdc42e496d7 100644 --- a/.github/workflows/fips-label.yml +++ b/.github/workflows/fips-label.yml @@ -28,7 +28,7 @@ jobs: uses: actions/github-script@v6 with: script: | - 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 }}, @@ -36,7 +36,7 @@ jobs: var matchArtifact = artifacts.data.artifacts.filter((artifact) => { return artifact.name == "fips_checksum" })[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, @@ -55,14 +55,14 @@ jobs: var fs = require('fs'); var pr_num = Number(fs.readFileSync('./pr_num')); if ( fs.existsSync('./fips_changed') ) { - github.issues.addLabels({ + github.rest.issues.addLabels({ issue_number: pr_num, owner: context.repo.owner, repo: context.repo.repo, labels: ['severity: fips change'] }); } else if ( fs.existsSync('./fips_unchanged') ) { - var labels = await github.issues.listLabelsOnIssue({ + var labels = await github.rest.issues.listLabelsOnIssue({ issue_number: pr_num, owner: context.repo.owner, repo: context.repo.repo @@ -70,7 +70,7 @@ jobs: for ( var label in labels.data ) { if (labels.data[label].name == 'severity: fips change') { - github.issues.removeLabel({ + github.rest.issues.removeLabel({ issue_number: pr_num, owner: context.repo.owner, repo: context.repo.repo,