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
8 changes: 4 additions & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ jobs:
# Artifact can be unzipped into $(pwd) and tested with e.g.:
# docker run -ti -v $(pwd):/shared --env PIP_EXTRA_INDEX_URL=file:///shared python:3.9 /bin/bash -l
- name: Upload simple503-test artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: "simple503-test"
path: simple/*

- name: Upload wheelhouse artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheelhouse
path: wheelhouse/*
Expand All @@ -185,7 +185,7 @@ jobs:

# For manual upload.
- name: Upload simple503 artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: "simple503"
path: simple/*
Expand All @@ -198,7 +198,7 @@ jobs:
docker rm ${CONTAINER_ID}

- name: Upload mpiexec artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: "mpiexec.hydra"
path: mpiexec.hydra
6 changes: 3 additions & 3 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,13 +327,13 @@ jobs:
doxygen Doxyfile
make html
- name: Upload C++ Doxygen documentation artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docs-cpp-doxygen
path: cpp/doc/html
retention-days: 2
- name: Upload C++ Sphinx documentation artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docs-cpp-sphinx
path: cpp/doc/build/html
Expand All @@ -344,7 +344,7 @@ jobs:
cd python/doc
python -m sphinx -W -b html source/ build/html/
- name: Upload Python documentation artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docs-python
path: python/doc/build/html
Expand Down
Loading