Skip to content

Commit 3607ace

Browse files
Bump actions/upload-artifact from 6 to 7 (#14539)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cd2c4c7 commit 3607ace

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/PR-assignment-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
run: |
2121
npx gulp build
2222
- name: Upload dependencies.json
23-
uses: actions/upload-artifact@v6
23+
uses: actions/upload-artifact@v7
2424
with:
2525
name: dependencies.json
2626
path: ./build/dist/dependencies.json
2727
- name: Generate PR info
2828
run: |
2929
echo '{ "prNo": ${{ github.event.pull_request.number }} }' >> ${{ runner.temp}}/prInfo.json
3030
- name: Upload PR info
31-
uses: actions/upload-artifact@v6
31+
uses: actions/upload-artifact@v7
3232
with:
3333
name: prInfo
3434
path: ${{ runner.temp}}/prInfo.json

.github/workflows/jscpd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Upload unfiltered jscpd report
5858
if: always()
59-
uses: actions/upload-artifact@v6
59+
uses: actions/upload-artifact@v7
6060
with:
6161
name: unfiltered-jscpd-report
6262
path: ./jscpd-report.json
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Upload filtered jscpd report
9191
if: env.filtered_report_exists == 'true'
92-
uses: actions/upload-artifact@v6
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: filtered-jscpd-report
9595
path: ./filtered-jscpd-report.json
@@ -119,7 +119,7 @@ jobs:
119119
120120
- name: Upload comment data
121121
if: env.filtered_report_exists == 'true'
122-
uses: actions/upload-artifact@v6
122+
uses: actions/upload-artifact@v7
123123
with:
124124
name: comment
125125
path: ${{ runner.temp }}/comment.json

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: Upload comment data
119119
if: ${{ steps.comment.outputs.result == 'true' }}
120-
uses: actions/upload-artifact@v6
120+
uses: actions/upload-artifact@v7
121121
with:
122122
name: comment
123123
path: ${{ runner.temp }}/comment.json

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
207207
- name: 'Save coverage result'
208208
if: ${{ steps.coverage.outputs.coverage }}
209-
uses: actions/upload-artifact@v6
209+
uses: actions/upload-artifact@v7
210210
with:
211211
name: coverage-partial-${{inputs.test-cmd}}-${{ matrix.chunk-no }}
212212
path: ./build/coverage

0 commit comments

Comments
 (0)