Skip to content

Commit f3fb669

Browse files
⬆ Bump actions/download-artifact from 5 to 6 (#108)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1b027d7 commit f3fb669

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

β€Ž.github/workflows/documentation.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Download docs update flag from release workflow
6060
if: github.event_name == 'workflow_run'
61-
uses: actions/download-artifact@v5
61+
uses: actions/download-artifact@v6
6262
with:
6363
name: release-docs-flag
6464
github-token: ${{ secrets.GITHUB_TOKEN }}

β€Ž.github/workflows/rw_organize_test_cov_reports.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/checkout@v5
4747

4848
- name: Download code coverage result file
49-
uses: actions/download-artifact@v5
49+
uses: actions/download-artifact@v6
5050
with:
5151
pattern: coverage*
5252
path: ${{ inputs.test_working_directory }}

β€Ž.github/workflows/rw_sonarqube_scan.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
5454

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

β€Ž.github/workflows/rw_upload_test_cov_report.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ jobs:
112112
bash ./scripts/ci/check-input-params.sh ${{ inputs.upload-to-codacy }} ${{ secrets.codacy_token }}
113113
114114
- name: Download code coverage result files which has be handled by different test type process
115-
uses: actions/download-artifact@v5
115+
uses: actions/download-artifact@v6
116116
with:
117117
name: ${{ inputs.test_type }}_coverage_data_file
118118
path: ${{ inputs.download_path }}
119119

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

0 commit comments

Comments
Β (0)