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/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: twine check dist/*

- name: Upload artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
path: dist/*
name: dist
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
python-version: ${{ matrix.python }}

- name: Download Python packages
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: dist
name: dist
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
steps:

- name: Download Python packages
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: dist
name: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gpu_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Get benchmark results from main branch
id: cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ./cache
key: ${{ runner.os }}-benchmark
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
auto-push: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}

- name: Update Benchmark Results cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: ${{ github.ref_name == 'main' }}
with:
path: ./cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pixi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: echo "BRANCH_NAME=update-pixi-$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV

- name: Create pull request
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update `pixi.lock`
Expand Down
Loading