Skip to content

Commit

Permalink
build(deps): bump actions/github-script from 6.4.1 to 7.0.0
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6.4.1...v7.0.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 Nov 14, 2023
1 parent 3877317 commit db9e275
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.4.1
uses: actions/github-script@v7.0.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.4.1
uses: actions/github-script@v7.0.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.4.1
uses: actions/github-script@v7.0.0
with:
script: |
github.rest.issues.removeLabel({
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
npm install packageurl-js
- name: Parse Package URL
id: purl-parser
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.0
env:
PURL: ${{ fromJSON(steps.issue-parser.outputs.jsonString).purl }}
with:
Expand Down Expand Up @@ -148,7 +148,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.4.1
uses: actions/github-script@v7.0.0
env:
GROUPID: ${{ fromJSON(steps.purl-parser.outputs.result).namespace }}
ARTIFACTID: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
})
- name: Comment on npm issue
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'npm' }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.0
env:
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }}
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
})
- name: Comment on dotnet issue
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.0
env:
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }}
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
- name: Message failure
if: ${{ failure() }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.0
with:
script: |
github.rest.issues.createComment({
Expand Down

0 comments on commit db9e275

Please sign in to comment.