Skip to content

Commit

Permalink
Merge pull request #1304 from jhipster/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/upload-artifact-3

chore(deps): bump actions/upload-artifact from 2 to 3
  • Loading branch information
pascalgrimaud authored Apr 17, 2022
2 parents 9ccde2c + 4bc0c43 commit 717347c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 717347c

Please sign in to comment.