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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Required so we can lint commit messages.

Expand All @@ -27,7 +27,7 @@ jobs:
- uses: DeterminateSystems/flake-checker-action@main

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v8.0.0

- name: Nix Format Check
run: nix fmt -- . --check
Expand Down Expand Up @@ -91,10 +91,10 @@ jobs:
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v8.0.0

- name: Install the project
run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
uses: lowrisc/ci-actions/ca-token@v1

- name: Setup | Checkout Repository at PR branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ steps.get-token.outputs.token }}
ref: ${{ github.ref_name }}
# Full-depth needed for semantic-release to determine version and changelog
fetch-depth: 0

- name: Setup | Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v8.0.0

- name: Setup | Install Python + the python project with release dependencies
run: |
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
steps:

- name: Setup | Checkout Repository at newly tagged release
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# Can't checkout at the new tag, we need to match one of the configured
# semantic_release.branches for the publish-action to proceed.
Expand All @@ -107,7 +107,7 @@ jobs:
fetch-tags: true

- name: Setup | Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v8.0.0

- name: Setup | Install Python + the python project with build dependencies
run: |
Expand All @@ -126,7 +126,7 @@ jobs:
tag: ${{ needs.release.outputs.tag }}

- name: Upload | Distribution artifacts to blob store for follow-up jobs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: distribution-artifacts
path: dist
Expand All @@ -152,7 +152,7 @@ jobs:
steps:

- name: Setup | Download dist artifacts from previous job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: artifact-download
with:
name: distribution-artifacts
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
steps:

- name: Setup | Download dist artifacts from previous job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
id: artifact-download
with:
name: distribution-artifacts
Expand Down
Loading