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 23, 2024
1 parent 71024d6 commit 112b35a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
build-and-push-build-kit:
name: Build and Push Build Kit
uses: everest/everest-ci/.github/workflows/[email protected].1
uses: everest/everest-ci/.github/workflows/[email protected].3
needs:
- setup-env
permissions:
Expand Down Expand Up @@ -386,7 +386,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 @@ -401,7 +401,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 @@ -418,20 +418,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 All @@ -458,7 +458,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 @@ -467,7 +467,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 @@ -489,7 +489,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 @@ -520,7 +520,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
2 changes: 1 addition & 1 deletion github-actions/deploy-ci-artifact/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
git config --global user.email "[email protected]"
git config --global user.name "Github Service Account"
- name: Checkout target repository
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3.6.0
with:
repository: ${{ inputs.target_repo }}
path: gh-pages-repo
Expand Down

0 comments on commit 112b35a

Please sign in to comment.