Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 30, 2024
1 parent ea0330d commit b25b6c2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -455,20 +455,20 @@ jobs:
if: ${{ inputs.run_integration_tests == 'true' }}
steps:
- name: Download dist dir
uses: actions/[email protected].2
uses: actions/[email protected].8
with:
name: dist
- name: Extract dist.tar.gz
run: |
tar -xzf ${{ github.workspace }}/dist.tar.gz -C ${{ github.workspace }}
- name: Download wheels
if: ${{ inputs.run_install_wheels == 'true' }}
uses: actions/[email protected].2
uses: actions/[email protected].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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -531,7 +531,7 @@ jobs:
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
path: everest-ci
- name: Download xml coverage report
uses: actions/[email protected].2
uses: actions/[email protected].8
with:
if-no-files-found: error
name: coverage-xml
Expand Down Expand Up @@ -562,7 +562,7 @@ jobs:
artifact_directory: ${{ github.workspace }}/coverage-badge/
deploy_global_artifact: true
- name: Download html coverage report
uses: actions/[email protected].2
uses: actions/[email protected].8
with:
if-no-files-found: error
name: coverage-report
Expand Down

0 comments on commit b25b6c2

Please sign in to comment.