Skip to content

Commit

Permalink
Bump actions/github-script from 5.1.1 to 6.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 5.1.1 to 6.2.0.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v5.1.1...v6.2.0)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 5, 2022
1 parent 4303d69 commit e908a09
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 @@ -147,7 +147,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 e908a09

Please sign in to comment.