From b6bdb4736ba7ecc3121293a931edf5775d04dfc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2020 08:05:51 +0000 Subject: [PATCH] Bump actions/upload-artifact from v1 to v2.0.1 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from v1 to v2.0.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...97b7dace6c8d860ce9708aba808be6a2ee4cbc3a) Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03319a1f..a407b684 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: mvn org.jacoco:jacoco-maven-plugin:prepare-agent test org.jacoco:jacoco-maven-plugin:report -B -V - name: Upload test coverage for unit tests if: matrix.java == 11 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v2.0.1 with: name: jacoco path: jbehave-support-core/target/site/jacoco/jacoco.xml @@ -79,14 +79,14 @@ jobs: run: | xvfb-run mvn org.jacoco:jacoco-maven-plugin:prepare-agent-integration verify org.jacoco:jacoco-maven-plugin:report-integration -DskipUnitTests=true -Djbehave.report.level=STORY -Pintegration-test -B -V - name: Upload reports on Java ${{ matrix.java }} - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v2.0.1 if: always() with: name: reports-java-${{ matrix.java }} path: jbehave-support-core/target/reports - name: Upload test coverage for integration tests if: matrix.java == 11 - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v2.0.1 with: name: jacoco-it path: jbehave-support-core/target/site/jacoco-it/jacoco.xml