Skip to content

Commit d78c77c

Browse files
Bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6155d0f commit d78c77c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

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

5656
- name: Archive HTML test report on failure
5757
if: ${{ failure() }}
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: test-reports-java17-java${{ matrix.java }}-${{ matrix.distribution }}-html
6161
path: "*/build/reports/**"
@@ -68,14 +68,14 @@ jobs:
6868

6969
- name: Archive HTML test report
7070
if: ${{ always() }}
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
with:
7373
name: test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-html
7474
path: "*/build/reports/**"
7575

7676
- name: Archive JUnit test report
7777
if: ${{ always() }}
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-xml
8181
path: "*/build/test-results/**/*.xml"

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: ./gradlew pitestMerge
3131

3232
- name: Archive test reports
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: pitest-reports-${{ github.sha }}
3636
path: "*/build/reports/pitest/**"

.github/workflows/release-verify-signatures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
until wget https://repo1.maven.org/maven2/com/yubico/webauthn-server-core/${{ github.ref_name }}/webauthn-server-core-${{ github.ref_name }}.jar.asc; do sleep 180; done
2525
2626
- name: Store keyring and signatures as artifact
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: keyring-and-signatures
3030
retention-days: 1

0 commit comments

Comments
 (0)