|
15 | 15 | steps: |
16 | 16 | - name: Remove Labels |
17 | 17 | 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 |
19 | 19 | with: |
20 | 20 | script: | |
21 | 21 | github.rest.issues.removeLabel({ |
|
50 | 50 | npm install packageurl-js |
51 | 51 | - name: Parse Package URL |
52 | 52 | id: purl-parser |
53 | | - uses: actions/github-script@v7.0.1 |
| 53 | + uses: actions/github-script@v8.0.0 |
54 | 54 | env: |
55 | 55 | PURL: ${{ fromJSON(steps.issue-parser.outputs.jsonString).purl }} |
56 | 56 | with: |
@@ -148,7 +148,7 @@ jobs: |
148 | 148 | path: ${{github.workspace}}/reports |
149 | 149 | - name: Comment on maven issue |
150 | 150 | 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 |
152 | 152 | env: |
153 | 153 | GROUPID: ${{ fromJSON(steps.purl-parser.outputs.result).namespace }} |
154 | 154 | ARTIFACTID: ${{ fromJSON(steps.purl-parser.outputs.result).name }} |
@@ -199,7 +199,7 @@ jobs: |
199 | 199 | }) |
200 | 200 | - name: Comment on npm issue |
201 | 201 | 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 |
203 | 203 | env: |
204 | 204 | NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }} |
205 | 205 | VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }} |
@@ -246,7 +246,7 @@ jobs: |
246 | 246 | }) |
247 | 247 | - name: Comment on dotnet issue |
248 | 248 | 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 |
250 | 250 | env: |
251 | 251 | NAME: ${{ fromJSON(steps.purl-parser.outputs.result).name }} |
252 | 252 | VERSION: ${{ fromJSON(steps.purl-parser.outputs.result).version }} |
@@ -293,7 +293,7 @@ jobs: |
293 | 293 | |
294 | 294 | - name: Message failure |
295 | 295 | if: ${{ failure() }} |
296 | | - uses: actions/github-script@v7.0.1 |
| 296 | + uses: actions/github-script@v8.0.0 |
297 | 297 | with: |
298 | 298 | script: | |
299 | 299 | github.rest.issues.createComment({ |
|
0 commit comments