Skip to content

Commit 272f6c7

Browse files
authored
Merge pull request #6883 from bndtools/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2 parents 03298bf + 85f3321 commit 272f6c7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/cibuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
JFROG_PASSWORD: ${{ secrets.JFROG_PASSWORD }}
118118
- name: Upload Test Reports
119119
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
120-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
120+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
121121
with:
122122
name: Build_JDK${{ matrix.java }}_${{ matrix.os }}-test-reports
123123
path: |

.github/workflows/postrelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
rm -rf _site/releases
6262
find _site -type f ! -name "*.html" -exec rm -f {} +
6363
64-
- uses: actions/upload-artifact@v4
64+
- uses: actions/upload-artifact@v5
6565
with:
6666
name: releasedocs
6767
path: docs/_site/

.github/workflows/rebuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: |
7474
./.github/scripts/rebuild-build.sh
7575
- name: Upload dist/bundles
76-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
76+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
7777
with:
7878
name: Dist_Bundles_JDK${{ matrix.java }}_${{ matrix.os }}
7979
if-no-files-found: error
@@ -123,7 +123,7 @@ jobs:
123123
${{ format(matrix.runner, './.github/scripts/rebuild-test.sh') }}
124124
- name: Upload Test Reports
125125
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
126-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
126+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
127127
with:
128128
name: Rebuild_JDK${{ matrix.java }}_${{ matrix.os }}-test-reports
129129
path: |
@@ -132,7 +132,7 @@ jobs:
132132
gradle-plugins/*/build/test-results/*/TEST-*.xml
133133
- name: Upload Rebuild P2 Repo artifact
134134
if: ${{ github.event_name == 'pull_request' }}
135-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
135+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
136136
with:
137137
name: pr-${{ github.event.pull_request.number }}-jdk${{ matrix.java }}-${{ matrix.os }}
138138
path: |

0 commit comments

Comments
 (0)