Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/deploy_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,21 @@ jobs:
steps:
- name: Download docs artifact
# docs artifact is uploaded by build-docs job
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: docs
path: "./public"

- name: Download code coverage report artifact
# docs artifact is uploaded by build-docs job
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: code-coverage-report-stable
path: "./public/code-coverage-report-stable"

- name: Download code coverage report artifact
# docs artifact is uploaded by build-docs job
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: code-coverage-report-nightly
path: "./public/code-coverage-report-nightly"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: artifact
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_package_openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ jobs:
working-directory: ${{ env.working-directory}}

- name: Download legacy data
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: legacy_ompi
path: ./legacy

- name: Download legacy data
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: legacy_checkpoint_ompi
path: ./legacy_checkpoint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ jobs:
working-directory: ${{ env.working-directory}}

- name: Download legacy data
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: legacy_ompi
path: ./legacy

- name: Download legacy data
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: legacy_checkpoint_ompi
path: ./legacy_checkpoint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:

# Note: We assume the caller workflow has already uploaded these artifacts
- name: Download legacy mpich data
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: legacy_mpich
path: ./legacy

- name: Download legacy checkpoint mpich data
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: legacy_checkpoint_mpich
path: ./legacy_checkpoint
Expand Down