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/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: docker/metadata-action@v5
id: meta
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '>=1.17'
Expand All @@ -23,12 +23,12 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '>=1.17'
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
uses: golangci/golangci-lint-action@v9
continue-on-error: true
with:
version: latest
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
node: [16, 18, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '>=1.17'
Expand All @@ -41,7 +41,7 @@ jobs:
#os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '>=1.17'
Expand All @@ -68,7 +68,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
registry-url: 'https://registry.npmjs.org'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- go_target: arm64
cibw_target: aarch64
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up QEMU
Expand All @@ -28,7 +28,7 @@ jobs:
with:
platforms: arm64
- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.0
with:
package-dir: bindings/py
env:
Expand All @@ -55,7 +55,7 @@ jobs:
#- go_target: arm64
# cibw_target: ARM64
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
Expand All @@ -68,7 +68,7 @@ jobs:
set CGO_ENABLED=1
make -C bindings/py compile
- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.0
with:
package-dir: bindings/py
env:
Expand All @@ -89,7 +89,7 @@ jobs:
#- go_target: arm64
# cibw_target: arm64
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
Expand All @@ -103,7 +103,7 @@ jobs:
export MACOSX_DEPLOYMENT_TARGET=10.9
make -C bindings/py compile
- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.0
with:
package-dir: bindings/py
env:
Expand All @@ -117,7 +117,7 @@ jobs:
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
mkdir dist
mv artifacts/*/* dist/
- name: Upload to GitHub Release
uses: softprops/action-gh-release@v2.4.1
uses: softprops/action-gh-release@v2.5.0
with:
files: bindings/py/dist/*
- name: Publish to PyPI
Expand Down
Loading
Loading