Skip to content

Commit 7efac1d

Browse files
⬆ Bump actions/download-artifact from 6 to 7 (#121)
1 parent 038009c commit 7efac1d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

β€Ž.github/workflows/docs-build-check.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- name: Download build artifacts
57-
uses: actions/download-artifact@v6
57+
uses: actions/download-artifact@v7
5858
with:
5959
name: documentation-build
6060
path: docs/build

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: Download docs update flag from release workflow
6161
if: github.event_name == 'workflow_run'
62-
uses: actions/download-artifact@v6
62+
uses: actions/download-artifact@v7
6363
with:
6464
name: release-docs-flag
6565
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -109,7 +109,7 @@ jobs:
109109
needs: [check_docs_changes, build_documentation]
110110
steps:
111111
- name: Download build artifacts
112-
uses: actions/download-artifact@v6
112+
uses: actions/download-artifact@v7
113113
with:
114114
name: documentation-build
115115
path: ./docs/build

β€Ž.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@v6
4747

4848
- name: Download code coverage result file
49-
uses: actions/download-artifact@v6
49+
uses: actions/download-artifact@v7
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@v6
56+
uses: actions/download-artifact@v7
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@v6
115+
uses: actions/download-artifact@v7
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@v6
121+
uses: actions/download-artifact@v7
122122
with:
123123
name: ${{ inputs.test_type }}_coverage_xml_report
124124
path: ${{ inputs.download_path }}

0 commit comments

Comments
Β (0)