-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump actions/github-script from 7.0.0 to 7.0.1 (#6079)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1fee73a
commit 8c6a97b
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
npm install fs | ||
- name: Commit Suppression Rule | ||
id: fp-ops-commit | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
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/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
script: | | ||
github.rest.issues.createComment({ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
steps: | ||
- name: Remove Labels | ||
if: contains(github.event.issue.labels.*.name, 'pending more information') | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
script: | | ||
github.rest.issues.removeLabel({ | ||
|
@@ -50,7 +50,7 @@ jobs: | |
npm install packageurl-js | ||
- name: Parse Package URL | ||
id: purl-parser | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
env: | ||
PURL: ${{ fromJSON(steps.issue-parser.outputs.jsonString).purl }} | ||
with: | ||
|
@@ -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/[email protected].0 | ||
uses: actions/[email protected].1 | ||
env: | ||
GROUPID: ${{ fromJSON(steps.purl-parser.outputs.result).namespace }} | ||
ARTIFACTID: ${{ fromJSON(steps.purl-parser.outputs.result).name }} | ||
|
@@ -199,7 +199,7 @@ jobs: | |
}) | ||
- name: Comment on npm issue | ||
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'npm' }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
env: | ||
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }} | ||
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }} | ||
|
@@ -246,7 +246,7 @@ jobs: | |
}) | ||
- name: Comment on dotnet issue | ||
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
env: | ||
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }} | ||
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }} | ||
|
@@ -293,7 +293,7 @@ jobs: | |
- name: Message failure | ||
if: ${{ failure() }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
script: | | ||
github.rest.issues.createComment({ | ||
|