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/cifuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
dry-run: false
language: go
- name: Upload Crash
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
run: npm run build:go

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: prebuild-${{ matrix.goos }}-${{ matrix.goarch }}
path: bindings/js/build/${{ matrix.goos }}-${{ matrix.goarch }}
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
PKG_VERSION: ${{ github.ref_name || '0.0.0-dev' }}

- name: Download prebuilts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: prebuild-*
path: bindings/js/build/_artifacts
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
platforms: arm64
- name: Build wheels
uses: pypa/cibuildwheel@v3.3.0
uses: pypa/cibuildwheel@v3.3.1
with:
package-dir: bindings/py
env:
Expand All @@ -38,7 +38,7 @@ jobs:
CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux_2_28_aarch64
CIBW_BEFORE_ALL: .ci/ensure-go.sh; make -C bindings/py compile
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-linux-${{ matrix.go_target }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -68,13 +68,13 @@ jobs:
set CGO_ENABLED=1
make -C bindings/py compile
- name: Build wheels
uses: pypa/cibuildwheel@v3.3.0
uses: pypa/cibuildwheel@v3.3.1
with:
package-dir: bindings/py
env:
CIBW_ARCHS: ${{ matrix.cibw_target }}
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-windows-${{ matrix.go_target }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -103,13 +103,13 @@ jobs:
export MACOSX_DEPLOYMENT_TARGET=10.9
make -C bindings/py compile
- name: Build wheels
uses: pypa/cibuildwheel@v3.3.0
uses: pypa/cibuildwheel@v3.3.1
with:
package-dir: bindings/py
env:
CIBW_ARCHS: ${{ matrix.cibw_target }}
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-macos-${{ matrix.go_target }}
path: ./wheelhouse/*.whl
Expand All @@ -132,7 +132,7 @@ jobs:
- name: Build package
run: make -C bindings/py build
- name: Upload sdist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels
path: bindings/py/dist/*
Expand All @@ -143,7 +143,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: bindings/py/artifacts
- name: Bundle release artifacts
Expand Down
Loading
Loading