generated from EVerest/everest-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71024d6
commit 112b35a
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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 | ||
|
@@ -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 }} | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|