Skip to content

Commit fc289ea

Browse files
build(deps): bump actions/github-script from 7.0.1 to 8.0.0 (#7909)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4a6901f commit fc289ea

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/false-positive-approvals.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
npm install fs
3232
- name: Commit Suppression Rule
3333
id: fp-ops-commit
34-
uses: actions/github-script@v7.0.1
34+
uses: actions/github-script@v8.0.0
3535
with:
3636
script: |
3737
const { execSync } = require("child_process");
@@ -159,7 +159,7 @@ jobs:
159159
target-folder: suppressions
160160
- name: Message failure
161161
if: ${{ failure() || steps.fp-ops-commit.outputs.failed }}
162-
uses: actions/github-script@v7.0.1
162+
uses: actions/github-script@v8.0.0
163163
with:
164164
script: |
165165
github.rest.issues.createComment({

.github/workflows/false-positive-ops.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Remove Labels
1717
if: contains(github.event.issue.labels.*.name, 'pending more information')
18-
uses: actions/github-script@v7.0.1
18+
uses: actions/github-script@v8.0.0
1919
with:
2020
script: |
2121
github.rest.issues.removeLabel({
@@ -50,7 +50,7 @@ jobs:
5050
npm install packageurl-js
5151
- name: Parse Package URL
5252
id: purl-parser
53-
uses: actions/github-script@v7.0.1
53+
uses: actions/github-script@v8.0.0
5454
env:
5555
PURL: ${{ fromJSON(steps.issue-parser.outputs.jsonString).purl }}
5656
with:
@@ -148,7 +148,7 @@ jobs:
148148
path: ${{github.workspace}}/reports
149149
- name: Comment on maven issue
150150
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'maven' }}
151-
uses: actions/github-script@v7.0.1
151+
uses: actions/github-script@v8.0.0
152152
env:
153153
GROUPID: ${{ fromJSON(steps.purl-parser.outputs.result).namespace }}
154154
ARTIFACTID: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
@@ -199,7 +199,7 @@ jobs:
199199
})
200200
- name: Comment on npm issue
201201
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'npm' }}
202-
uses: actions/github-script@v7.0.1
202+
uses: actions/github-script@v8.0.0
203203
env:
204204
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
205205
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }}
@@ -246,7 +246,7 @@ jobs:
246246
})
247247
- name: Comment on dotnet issue
248248
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }}
249-
uses: actions/github-script@v7.0.1
249+
uses: actions/github-script@v8.0.0
250250
env:
251251
NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }}
252252
VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }}
@@ -293,7 +293,7 @@ jobs:
293293
294294
- name: Message failure
295295
if: ${{ failure() }}
296-
uses: actions/github-script@v7.0.1
296+
uses: actions/github-script@v8.0.0
297297
with:
298298
script: |
299299
github.rest.issues.createComment({

.github/workflows/publish-suppressions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- run: |
2020
npm install fs
2121
- name: Create Generated Suppressions XML
22-
uses: actions/github-script@v7.0.1
22+
uses: actions/github-script@v8.0.0
2323
with:
2424
script: |
2525
const fs = require('fs');

0 commit comments

Comments
 (0)