From 4bc0c43787c9f7cfd5c6baac847af1d508b79207 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Apr 2022 08:35:50 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/github-actions.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index acced0681a6..73423870957 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -78,19 +78,19 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: ./mvnw initialize sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.projectKey=jhipster_jhipster-lite -Dsonar.organization=jhipster - name: 'Artifact: upload JaCoCo report' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: jacoco path: '${{ github.workspace }}/target/jacoco/jacoco.xml' retention-days: 1 - name: 'Artifact: upload lcov report' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: lcov path: '${{ github.workspace }}/target/test-results/lcov.info' retention-days: 1 - name: 'Artifact: upload JAR' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: jhlite-jar path: '${{ github.workspace }}/target/*.jar' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 323eb1e59c0..ee488dd2059 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: chmod +x mvnw ./mvnw clean verify - name: 'Artifact: upload JAR' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: jhlite-jar path: '${{ github.workspace }}/target/*.jar'