Skip to content

Commit

Permalink
build(deps): bump actions/github-script from 6.3.3 to 6.4.0
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6.3.3...v6.4.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 27, 2023
1 parent 4acc6ae commit bef8403
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 @@ -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");
Expand Down Expand Up @@ -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({
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.3.3
uses: actions/github-script@v6.4.0
with:
script: |
console.log(github.event.issue.labels);
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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({
Expand Down

0 comments on commit bef8403

Please sign in to comment.