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/generate-sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0 # such that setuptools_scm can do its job correctly

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
pipx install uv
pipx run build --verbose --sdist --installer=uv

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: cibw-sdist
path: dist/*.tar.gz
6 changes: 3 additions & 3 deletions .github/workflows/update-pixi-lockfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
pixi-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up pixi
uses: prefix-dev/[email protected].2
uses: prefix-dev/[email protected].3
with:
run-install: false
- name: Update lockfiles
run: |
set -o pipefail
pixi update --json | pixi exec pixi-diff-to-markdown > diff.md
- 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: "chore(lock): :lock: update pixi lockfile"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-to-aws-codeartifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Upload to AWS CodeArtifact
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
# unpacks all CIBW artifacts into dist/
pattern: cibw-*
Expand Down