Skip to content

Commit 606fd19

Browse files
Bump actions/upload-artifact from 4.6.2 to 7.0.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 7.0.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...043fb46) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5ed9239 commit 606fd19

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ jobs:
5757

5858
- name: Upload Surefire reports
5959
if: matrix.java == '21'
60-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
60+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6161
with:
6262
name: surefire-reports-${{ matrix.java }}
6363
path: target/surefire-reports
6464

6565
- name: Upload JaCoCo report
6666
if: matrix.java == '21'
67-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
67+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6868
with:
6969
name: jacoco-report-${{ matrix.java }}
7070
path: target/site/jacoco

.github/workflows/quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
- name: Run static quality plugins
2626
run: mvn -B -DskipTests checkstyle:check pmd:check spotbugs:check
2727
- name: Upload checkstyle report
28-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
28+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
2929
with:
3030
name: checkstyle-report
3131
path: target/checkstyle-result.xml
3232
if-no-files-found: ignore
3333
- name: Upload pmd report
34-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
34+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3535
with:
3636
name: pmd-report
3737
path: target/pmd.xml
3838
if-no-files-found: ignore
3939
- name: Upload spotbugs report
40-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
40+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
4141
with:
4242
name: spotbugs-report
4343
path: target/spotbugsXml.xml

0 commit comments

Comments
 (0)