Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Download docs update flag from release workflow
if: github.event_name == 'workflow_run'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: release-docs-flag
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_organize_test_cov_reports.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions/checkout@v5

- name: Download code coverage result file
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: coverage*
path: ${{ inputs.test_working_directory }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_sonarqube_scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Download code coverage result files which has be handled by different test type process
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.test_type }}_coverage_xml_report
path: ${{ inputs.download_path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rw_upload_test_cov_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ jobs:
bash ./scripts/ci/check-input-params.sh ${{ inputs.upload-to-codacy }} ${{ secrets.codacy_token }}

- name: Download code coverage result files which has be handled by different test type process
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.test_type }}_coverage_data_file
path: ${{ inputs.download_path }}

- name: Download code coverage result files which has be handled by different test type process
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.test_type }}_coverage_xml_report
path: ${{ inputs.download_path }}
Expand Down
Loading