Skip to content

Commit

Permalink
Merge pull request #586 from codecentric/renovate/actions-download-ar…
Browse files Browse the repository at this point in the history
…tifact-4.x

chore(deps): update actions/download-artifact action to v4
  • Loading branch information
cc-ju authored Jan 12, 2024
2 parents 1b6daec + 982e8fc commit 15609d3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: ⬇️ Checkout
uses: actions/checkout@v4
- name: 📦 Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
if: inputs.artifact-name && inputs.artifact-path
with:
name: ${{ inputs.artifact-name }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-java-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ jobs:
arguments: build -Pversion=${{ inputs.version }} generateLicenseReport
build-root-directory: services/${{ inputs.service_name }}
- name: 📦 Upload JAR
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.service_name }}-jar
path: ./services/${{ inputs.service_name }}/build/libs/${{ inputs.service_name }}-*.jar
- name: 📦 Upload license report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.service_name }}-license
path: ./services/${{ inputs.service_name }}/build/distributions/license-report.zip
- name: 📦 Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lpt-locust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
pip-licenses --with-license-file \
--format html --with-notice-file --no-license-path >licenses.html
- name: 📦 Upload license report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: license-report
path: ./test/lpt-locust/licenses.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: ⬇️ Checkout
uses: actions/checkout@v4
- name: 📦 Download license artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.license-artifact-name }}
path: ${{ inputs.license-artifact-path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
working-directory: ./services/ui
run: npm run test:ci
- name: 📦 Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
Expand All @@ -54,7 +54,7 @@ jobs:
working-directory: ./services/ui
run: npm run build
- name: 📦 Upload build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ui-build
path: ./services/ui/build
Expand All @@ -64,7 +64,7 @@ jobs:
npm run license-report >licenses.txt
zip -r license-report.zip licenses licenses.txt
- name: 📦 Upload license report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: license-report
path: ./services/ui/license-report.zip
Expand Down

0 comments on commit 15609d3

Please sign in to comment.