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
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
python benchmarks.py raw stream proto
- name: upload results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: results-base
path: benchmarks/results/*
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
BENCHMARK_EXC_PREFIX=${{ github.workspace }}/.venv313/bin ${{ github.workspace }}/.venv313/bin/python benchmarks.py raw
mv results/data.json results/py313.json
- name: upload results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: results-pyver
path: benchmarks/results/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
container: ${{ matrix.container }}
docker-options: -e CI
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ matrix.platform || matrix.os }}-${{ matrix.target }}-${{ matrix.manylinux || 'auto' }}
path: dist
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
env:
RUSTFLAGS: "-Cprofile-use=${{ github.workspace }}/merged.profdata"
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-pgo-${{ matrix.platform || matrix.os }}-${{ matrix.interpreter }}
path: dist
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-sdist
path: dist
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
container: ${{ matrix.container }}
docker-options: -e CI
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ matrix.platform || matrix.os }}-${{ matrix.target }}-${{ matrix.manylinux || 'auto' }}
path: dist
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
env:
RUSTFLAGS: "-Cprofile-use=${{ github.workspace }}/merged.profdata"
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-pgo-${{ matrix.platform || matrix.os }}-${{ matrix.interpreter }}
path: dist
Expand Down