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
6 changes: 3 additions & 3 deletions .github/workflows/package-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
npm x -- tree-sitter build --wasm "$grammar_dir"
done < <(jq -r '.grammars[].path // "."' tree-sitter.json)
- name: Upload binaries
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
path: "*.wasm"
name: prebuilds-wasm
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Build binary
run: npm x -- prebuildify -t 20.19.5
- name: Upload binaries
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
path: prebuilds/**
name: prebuilds-${{matrix.os}}
Expand All @@ -126,7 +126,7 @@ jobs:
node-version: ${{inputs.node-version}}
registry-url: https://registry.npmjs.org/
- name: Download binaries
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: prebuilds
pattern: prebuilds-*
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/package-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Build sources
run: python -mbuild -n -s
- name: Upload sources
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dist-sources
path: dist/*.tar.gz
Expand Down Expand Up @@ -121,13 +121,13 @@ jobs:
env:
TREE_SITTER_ABI_VERSION: ${{inputs.abi-version}}
- name: Build wheels
uses: pypa/cibuildwheel@v3.3
uses: pypa/cibuildwheel@v3.4
with:
output-dir: dist
env:
CIBW_ARCHS: native
- name: Upload wheel artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
path: dist/*.whl
name: dist-wheels-${{matrix.os}}
Expand All @@ -144,7 +144,7 @@ jobs:
# id-token: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: dist
pattern: dist-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
else "\(.path)/src"
end
- name: Generate attestations
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-path: |
*.wasm
Expand Down