Skip to content

Commit

Permalink
Merge pull request #340 from Yubico/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
emlun authored Jan 15, 2024
2 parents 31b2b28 + d78c77c commit 312612b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

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

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

- name: Archive JUnit test report
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-xml
path: "*/build/test-results/**/*.xml"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: ./gradlew pitestMerge

- name: Archive test reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pitest-reports-${{ github.sha }}
path: "*/build/reports/pitest/**"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-verify-signatures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
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
- name: Store keyring and signatures as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: keyring-and-signatures
retention-days: 1
Expand Down

1 comment on commit 312612b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mutation test results

Package Coverage Stats Prev Prev
Overall 82 % 🔹 1361 🔻 / 1656 🔹 82 % 1362 / 1656
com.yubico.fido.metadata 68 % 🔹 222 🔻 / 323 🔹 69 % 223 / 323
com.yubico.internal.util 46 % 🔹 57 🔹 / 123 🔹 46 % 57 / 123
com.yubico.webauthn 89 % 🔹 642 🔹 / 720 🔹 89 % 642 / 720
com.yubico.webauthn.attestation 92 % 🔹 13 🔹 / 14 🔹 92 % 13 / 14
com.yubico.webauthn.data 93 % 🔹 402 🔹 / 429 🔹 93 % 402 / 429
com.yubico.webauthn.extension.appid 100 % 🏆 13 🔹 / 13 🔹 100 % 13 / 13
com.yubico.webauthn.extension.uvm 50 % 🔹 12 🔹 / 24 🔹 50 % 12 / 24
com.yubico.webauthn.meta 0 % 🔹 0 🔹 / 10 🔹 0 % 0 / 10

Previous run: ee0d133 - Diff

Detailed reports: workflow run #258

Please sign in to comment.