diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 3e1fcaee..9036838b 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -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 }} diff --git a/.github/workflows/rw_organize_test_cov_reports.yaml b/.github/workflows/rw_organize_test_cov_reports.yaml index 1f43a145..98efdc4a 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@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 }} diff --git a/.github/workflows/rw_sonarqube_scan.yaml b/.github/workflows/rw_sonarqube_scan.yaml index e6107dc9..075fb4ff 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@v5 + uses: actions/download-artifact@v6 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 38d0033d..20798f27 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@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 }}