Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
uses: actions/checkout@v4

- name: Download - Jar
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ehrbase-jar
path: ./application/target/
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
docker-compose.yml

- name: Download - Test Image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ehrbase-image-test
path: ${{ runner.temp }}
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
docker-compose.yml

- name: Download - Build Image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ehrbase-image-build
path: ${{ runner.temp }}
Expand Down Expand Up @@ -431,14 +431,14 @@ jobs:
pull-requests: write
steps:
- name: Download - JMeter results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: jmeter-result-*
path: ./tests/jmeter-results/

- name: Download - JMeter reports
if: env.UPLOAD_PERF_HTML_REPORTS == 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: jmeter-report-*
path: ./tests/jmeter-reports/
Expand Down Expand Up @@ -479,7 +479,7 @@ jobs:
pull-requests: write
steps:
- name: Download - Robot results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: robot-result-*
path: ./tests/results/
Expand Down Expand Up @@ -519,13 +519,13 @@ jobs:
uses: actions/checkout@v4

- name: Download - Class files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: java-class-files
path: ./

- name: Download - Robot results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: jacoco-coverage-partial-*
path: ./tests/coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/collect-junit-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Download report separately because the dorny/test-reporter is not compatible with
# actions/[upload/download]-artifact@v4 https://github.com/dorny/test-reporter/issues/363
- name: Download - Unit Reports
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
github-token: ${{ secrets.BOT_ACCESS_TOKEN }}
run-id: ${{ github.event.workflow_run.id }} # download artifacts from build and test workflow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/job-docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
Dockerfile

- name: Download - Jar
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.ehrbase-jar-artifact }}
path: ./application/target/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/job-integration-test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Download - Image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.ehrbase-image-artifact }}
path: ${{ runner.temp }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-robot-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
# Download jacoco overall coverage from build & test output
- name: Download - Robot Results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
github-token: ${{ secrets.BOT_ACCESS_TOKEN }}
run-id: ${{ github.event.workflow_run.id }} # download artifacts from build and test workflow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-sonar-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

# Download jacoco overall coverage from build & test output
- name: Download - Jacoco Overall Coverage
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
github-token: ${{ secrets.BOT_ACCESS_TOKEN }}
run-id: ${{ github.event.workflow_run.id }} # download artifacts from build and test workflow
Expand Down