Skip to content

Commit 2b32a4a

Browse files
build(deps): bump actions/upload-artifact from 5 to 6 (#8189)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5125210 commit 2b32a4a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ jobs:
7474
- name: Archive IT test logs
7575
id: archive-logs
7676
if: always()
77-
uses: actions/upload-artifact@v5
77+
uses: actions/upload-artifact@v6
7878
with:
7979
name: it-test-logs
8080
retention-days: 7
8181
path: maven/target/it/**/build.log
8282
- name: Archive code coverage results
8383
id: archive-coverage
84-
uses: actions/upload-artifact@v5
84+
uses: actions/upload-artifact@v6
8585
with:
8686
name: code-coverage-report
8787
retention-days: 7
@@ -90,7 +90,7 @@ jobs:
9090
**/target/jacoco-results/**/*.html
9191
- name: Archive Snapshot
9292
id: archive-snapshot
93-
uses: actions/upload-artifact@v5
93+
uses: actions/upload-artifact@v6
9494
with:
9595
name: archive-snapshot
9696
retention-days: 7

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
--ossIndexPassword ${{ secrets.OSS_INDEX_API_TOKEN }}
145145
- name: Upload FP Report
146146
if: steps.check_files.outputs.files_exists == 'true'
147-
uses: actions/upload-artifact@v5
147+
uses: actions/upload-artifact@v6
148148
with:
149149
name: FP Report
150150
path: ${{github.workspace}}/reports

.github/workflows/pull_requests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
category: spotbugs-core
6767
- name: Archive Snapshot
6868
id: archive-snapshot
69-
uses: actions/upload-artifact@v5
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: archive-snapshot
7272
retention-days: 1
@@ -114,7 +114,7 @@ jobs:
114114
- name: Archive IT test logs
115115
id: archive-logs
116116
if: always()
117-
uses: actions/upload-artifact@v5
117+
uses: actions/upload-artifact@v6
118118
with:
119119
name: it-test-logs
120120
retention-days: 7

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
mvn -V -s settings.xml -Prelease clean package source:jar javadoc:jar gpg:sign deploy site site:stage -DreleaseTesting --no-transfer-progress --batch-mode
8181
- name: Archive code coverage results
8282
id: archive-coverage
83-
uses: actions/upload-artifact@v5
83+
uses: actions/upload-artifact@v6
8484
with:
8585
name: code-coverage-report
8686
retention-days: 7
@@ -89,7 +89,7 @@ jobs:
8989
**/target/jacoco-results/**/*.html
9090
- name: Archive Release
9191
id: archive-release
92-
uses: actions/upload-artifact@v5
92+
uses: actions/upload-artifact@v6
9393
with:
9494
name: archive-release
9595
retention-days: 7
@@ -102,7 +102,7 @@ jobs:
102102
target/*.buildinfo
103103
- name: Archive Site
104104
id: archive-site
105-
uses: actions/upload-artifact@v5
105+
uses: actions/upload-artifact@v6
106106
with:
107107
name: archive-site
108108
retention-days: 7

0 commit comments

Comments
 (0)