Browse Source

fips-label.yml: Fix the script after actions/github-script upgrade

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19636)
Tomas Mraz 1 year ago
parent
commit
ada6f0533d
1 changed files with 5 additions and 5 deletions
  1. 5 5
      .github/workflows/fips-label.yml

+ 5 - 5
.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,