Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: jupyter book build .

- name: Upload documentation as artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: ${{ env.ARTIFACT_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_legacy_checkpoint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Create datasets
run: python3 ./tests/create_legacy_checkpoint.py --output-dir=$data_dir

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ${{ inputs.artifact_name }}
path: ./${{ env.data_dir }}
2 changes: 1 addition & 1 deletion .github/workflows/create_legacy_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Create datasets
run: python3 ./tests/create_legacy_data.py --output-dir=$data_dir

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ${{ inputs.artifact_name }}
path: ./${{ env.data_dir }}
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Build SDist and wheel
run: pipx run build

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
path: dist/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

# Use the tag in the artifact name so parallel runs don't overwrite each other
- name: Upload coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: code-coverage-report-${{ inputs.dolfinx_tag }}
path: htmlcov
Expand Down