Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
CIBW_ARCHS_LINUX: x86_64
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: dist_linux_x86_64
path: ./wheelhouse/*.whl
Expand All @@ -38,7 +38,7 @@ jobs:
CIBW_ARCHS_LINUX: aarch64
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: dist_linux_aarch64
path: ./wheelhouse/*.whl
Expand All @@ -55,7 +55,7 @@ jobs:
env:
CIBW_ARCHS_MACOS: x86_64

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: dist_macos13_x86_64
path: ./wheelhouse/*.whl
Expand All @@ -72,7 +72,7 @@ jobs:
env:
CIBW_ARCHS_MACOS: arm64

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: dist_macos15_arm64
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:

- name: upload sdist
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist_sdist
path: dist/*.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/test-linux-cxx-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

- name: upload test log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: libcasm-composition-cxx-test-log
path: build_cxx_test/Testing/Temporary/LastTest.log
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

- name: upload docs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: libcasm-composition-docs
path: python/doc/_build/html
2 changes: 1 addition & 1 deletion .github/workflows/test-macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: upload libcasm-composition-macos-latest-x86_64-dist
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: libcasm-composition-macos-latest-x86_64-dist
path: dist
Loading