Skip to content

Commit

Permalink
Merge pull request #4813 from jeremylong/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions/github-script-6.2.0

Bump actions/github-script from 5.1.1 to 6.2.0
  • Loading branch information
jeremylong authored Sep 11, 2022
2 parents 96f0ea3 + e908a09 commit eeb144c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/false-positive-approvals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
npm install fs
- name: Commit Suppression Rule
id: fp-ops-commit
uses: actions/github-script@v5.1.1
uses: actions/github-script@v6.2.0
with:
script: |
const { execSync } = require("child_process");
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
target-folder: suppressions
- name: Message failure
if: ${{ failure() || steps.fp-ops-commit.outputs.failed }}
uses: actions/github-script@v5.1.1
uses: actions/github-script@v6.2.0
with:
script: |
github.rest.issues.createComment({
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/false-positive-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Remove Labels
if: contains(github.event.issue.labels.*.name, 'pending more information')
uses: actions/github-script@v6
uses: actions/github-script@v6.2.0
with:
script: |
console.log(github.event.issue.labels);
Expand All @@ -42,7 +42,7 @@ jobs:
npm install packageurl-js
- name: Parse Package URL
id: purl-parser
uses: actions/github-script@v6
uses: actions/github-script@v6.2.0
env:
PURL: ${{ fromJSON(steps.issue-parser.outputs.jsonString).purl }}
with:
Expand Down Expand Up @@ -140,7 +140,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
uses: actions/github-script@v6.2.0
env:
GROUPID: ${{ fromJSON(steps.purl-parser.outputs.result).namespace }}
ARTIFACTID: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
})
- name: Comment on npm issue
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'npm' }}
uses: actions/github-script@v6
uses: actions/github-script@v6.2.0
env:
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }}
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
})
- name: Comment on dotnet issue
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }}
uses: actions/github-script@v6
uses: actions/github-script@v6.2.0
env:
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }}
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
- name: Message failure
if: ${{ failure() }}
uses: actions/github-script@v5.1.1
uses: actions/github-script@v6.2.0
with:
script: |
github.rest.issues.createComment({
Expand Down

0 comments on commit eeb144c

Please sign in to comment.