From 4b04be2f7d7ab2850e9d6a35d34214017659f844 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 02:06:15 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=20Bump=20actions/download-artifact=20?= =?UTF-8?q?from=206=20to=207?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs-build-check.yaml | 2 +- .github/workflows/documentation.yaml | 4 ++-- .github/workflows/rw_organize_test_cov_reports.yaml | 2 +- .github/workflows/rw_sonarqube_scan.yaml | 2 +- .github/workflows/rw_upload_test_cov_report.yaml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs-build-check.yaml b/.github/workflows/docs-build-check.yaml index ee801dcd..191a364e 100644 --- a/.github/workflows/docs-build-check.yaml +++ b/.github/workflows/docs-build-check.yaml @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download build artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: documentation-build path: docs/build diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index fc3b71a2..ea4eff3b 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -59,7 +59,7 @@ jobs: - name: Download docs update flag from release workflow if: github.event_name == 'workflow_run' - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: release-docs-flag github-token: ${{ secrets.GITHUB_TOKEN }} @@ -109,7 +109,7 @@ jobs: needs: [check_docs_changes, build_documentation] steps: - name: Download build artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: documentation-build path: ./docs/build diff --git a/.github/workflows/rw_organize_test_cov_reports.yaml b/.github/workflows/rw_organize_test_cov_reports.yaml index 9bb6c186..2e206358 100644 --- a/.github/workflows/rw_organize_test_cov_reports.yaml +++ b/.github/workflows/rw_organize_test_cov_reports.yaml @@ -46,7 +46,7 @@ jobs: uses: actions/checkout@v6 - name: Download code coverage result file - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: pattern: coverage* path: ${{ inputs.test_working_directory }} diff --git a/.github/workflows/rw_sonarqube_scan.yaml b/.github/workflows/rw_sonarqube_scan.yaml index f2fcc482..ba774e11 100644 --- a/.github/workflows/rw_sonarqube_scan.yaml +++ b/.github/workflows/rw_sonarqube_scan.yaml @@ -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@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.test_type }}_coverage_xml_report path: ${{ inputs.download_path }} diff --git a/.github/workflows/rw_upload_test_cov_report.yaml b/.github/workflows/rw_upload_test_cov_report.yaml index 82056dff..1f85ca24 100644 --- a/.github/workflows/rw_upload_test_cov_report.yaml +++ b/.github/workflows/rw_upload_test_cov_report.yaml @@ -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@v6 + uses: actions/download-artifact@v7 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@v6 + uses: actions/download-artifact@v7 with: name: ${{ inputs.test_type }}_coverage_xml_report path: ${{ inputs.download_path }}