diff --git a/.github/workflows/false-positive-approvals.yml b/.github/workflows/false-positive-approvals.yml index c215decd32a..cec937428f5 100644 --- a/.github/workflows/false-positive-approvals.yml +++ b/.github/workflows/false-positive-approvals.yml @@ -29,7 +29,7 @@ jobs: npm install fs - name: Commit Suppression Rule id: fp-ops-commit - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 with: script: | const { execSync } = require("child_process"); @@ -157,7 +157,7 @@ jobs: target-folder: suppressions - name: Message failure if: ${{ failure() || steps.fp-ops-commit.outputs.failed }} - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 with: script: | github.rest.issues.createComment({ diff --git a/.github/workflows/false-positive-ops.yml b/.github/workflows/false-positive-ops.yml index c9097038d48..008ddfe258d 100644 --- a/.github/workflows/false-positive-ops.yml +++ b/.github/workflows/false-positive-ops.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Remove Labels if: contains(github.event.issue.labels.*.name, 'pending more information') - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 with: script: | console.log(github.event.issue.labels); @@ -43,7 +43,7 @@ jobs: npm install packageurl-js - name: Parse Package URL id: purl-parser - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 env: PURL: ${{ fromJSON(steps.issue-parser.outputs.jsonString).purl }} with: @@ -141,7 +141,7 @@ jobs: path: ${{github.workspace}}/reports - name: Comment on maven issue if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'maven' }} - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 env: GROUPID: ${{ fromJSON(steps.purl-parser.outputs.result).namespace }} ARTIFACTID: ${{ fromJSON(steps.purl-parser.outputs.result).name }} @@ -192,7 +192,7 @@ jobs: }) - name: Comment on npm issue if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'npm' }} - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 env: NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }} VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }} @@ -239,7 +239,7 @@ jobs: }) - name: Comment on dotnet issue if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }} - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 env: NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }} VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }} @@ -286,7 +286,7 @@ jobs: - name: Message failure if: ${{ failure() }} - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v6.4.0 with: script: | github.rest.issues.createComment({