From 501aee4691fb22e1958ab42630eaf685e96af072 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 10:54:56 +0000 Subject: [PATCH] Update workflow --- .github/workflows/continuous_integration.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 59c7d36..8451851 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -423,7 +423,7 @@ jobs: tar -czf dist.tar.gz dist - name: Upload dist artifact if: ${{ steps.create_dist.outcome == 'success' || steps.create_dist.outcome == 'failure' }} - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.4.3 with: if-no-files-found: error path: dist.tar.gz @@ -438,7 +438,7 @@ jobs: build-kit run-script install_wheels - name: Upload wheels artifact if: ${{ steps.create_wheels.outcome == 'success' || steps.create_wheels.outcome == 'failure' }} - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.4.3 with: if-no-files-found: error path: ${{ inputs.wheels_path }} @@ -455,7 +455,7 @@ jobs: if: ${{ inputs.run_integration_tests == 'true' }} steps: - name: Download dist dir - uses: actions/download-artifact@v4.1.2 + uses: actions/download-artifact@v4.1.8 with: name: dist - name: Extract dist.tar.gz @@ -463,12 +463,12 @@ jobs: tar -xzf ${{ github.workspace }}/dist.tar.gz -C ${{ github.workspace }} - name: Download wheels if: ${{ inputs.run_install_wheels == 'true' }} - uses: actions/download-artifact@v4.1.2 + uses: actions/download-artifact@v4.1.8 with: name: wheels path: wheels - name: Checkout repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.2.2 with: path: source - name: Setup run scripts @@ -500,7 +500,7 @@ jobs: run-script run_integration_tests - name: Upload result and report as artifact if: ${{ steps.run_integration_tests.outcome == 'success' || steps.run_integration_tests.outcome == 'failure' }} - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.4.3 with: if-no-files-found: error name: integration-test-report @@ -509,7 +509,7 @@ jobs: ${{ inputs.report_html_path }} - name: Render result if: ${{ steps.run_integration_tests.outcome == 'success' || steps.run_integration_tests.outcome == 'failure' }} - uses: pmeier/pytest-results-action@v0.6.0 + uses: pmeier/pytest-results-action@v0.7.1 with: path: ${{ inputs.result_xml_path }} summary: True @@ -531,7 +531,7 @@ jobs: ref: ${{ needs.setup-env.outputs.sha_everest_ci }} path: everest-ci - name: Download xml coverage report - uses: actions/download-artifact@v4.1.2 + uses: actions/download-artifact@v4.1.8 with: if-no-files-found: error name: coverage-xml @@ -562,7 +562,7 @@ jobs: artifact_directory: ${{ github.workspace }}/coverage-badge/ deploy_global_artifact: true - name: Download html coverage report - uses: actions/download-artifact@v4.1.2 + uses: actions/download-artifact@v4.1.8 with: if-no-files-found: error name: coverage-report