]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
fips-label.yml: Fix the script after actions/github-script upgrade
authorTomas Mraz <tomas@openssl.org>
Wed, 9 Nov 2022 12:55:56 +0000 (13:55 +0100)
committerTomas Mraz <tomas@openssl.org>
Wed, 9 Nov 2022 12:56:05 +0000 (13:56 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19636)

.github/workflows/fips-label.yml

index 7563352b3e1d998d58f0c1836fd0a92b4860a75f..bdc42e496d7f2e9b3246b9f1d7b54a6f7cd513c5 100644 (file)
@@ -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,