Skip to content

Commit 3a461e7

Browse files
committed
Merge branch 'master' into json_output
2 parents c8dc058 + fabac22 commit 3a461e7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: cmake --build . --config $BUILD_TYPE --parallel 4
7373

7474
- name: Upload
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
if: runner.environment == 'github-hosted'
7777
with:
7878
name: cmake-${{matrix.os}}-${{matrix.toolset}}

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fetch-tags: true
4545

4646
- name: Build wheels
47-
uses: pypa/cibuildwheel@v3.2.0
47+
uses: pypa/cibuildwheel@v3.2.1
4848
env:
4949
CIBW_BUILD: ${{ matrix.pyver }}-${{ matrix.build }}
5050
CIBW_BEFORE_ALL_LINUX: yum install -y zlib-devel bzip2-devel xz-devel netcdf-devel cfitsio-devel
@@ -74,7 +74,7 @@ jobs:
7474
CIBW_TEST_COMMAND: ctest --test-dir {package}/build --output-on-failure
7575

7676
- name: Upload artifacts
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: cibw-wheel-${{ matrix.pyver }}-${{ matrix.build }}
8080
path: ./wheelhouse/spt3g*.whl
@@ -91,7 +91,7 @@ jobs:
9191
- name: Build sdist
9292
run: pipx run build --sdist
9393

94-
- uses: actions/upload-artifact@v4
94+
- uses: actions/upload-artifact@v5
9595
with:
9696
name: cibw-sdist
9797
path: dist/*.tar.gz
@@ -105,7 +105,7 @@ jobs:
105105
if: github.event_name == 'release' && github.event.action == 'published'
106106
steps:
107107
- name: Download artifacts
108-
uses: actions/download-artifact@v5
108+
uses: actions/download-artifact@v6
109109
with:
110110
# unpacks all CIBW artifacts into dist/
111111
pattern: cibw-*

0 commit comments

Comments
 (0)