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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: needs.changes.outputs.full_ci == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
Expand All @@ -67,7 +67,7 @@ jobs:
if: needs.changes.outputs.full_ci == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Check SPDX headers
run: |
set -u
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
if: needs.changes.outputs.full_ci == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install Rust components
run: rustup component add rustfmt clippy
- name: cargo fmt
Expand All @@ -122,7 +122,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
Expand All @@ -145,7 +145,7 @@ jobs:
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -170,7 +170,7 @@ jobs:
SWITCHYARD_DEFAULT_PACKAGE: "nemo-switchyard @ file://${{ github.workspace }}"
SWITCHYARD_EXTRAS_PACKAGE: "nemo-switchyard[cli] @ file://${{ github.workspace }}"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Commit messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v6
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
Expand All @@ -66,7 +66,7 @@ jobs:
mkdir -p site/rust
cp -R target/doc/. site/rust/
- name: Upload site artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docs-site
path: site/
Expand All @@ -81,7 +81,7 @@ jobs:
contents: write
steps:
- name: Download site artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: docs-site
path: site/
Expand All @@ -105,9 +105,9 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download site artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: docs-site
path: site/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/getting-started.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
name: Run getting-started flow
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package-portability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
name: Wheel (linux-x86_64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Build manylinux x86_64 wheel
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
print("switchyard_rust", switchyard_rust.__file__)
print("rust extension", _switchyard_rust.__name__)
PY
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Smoke install wheel on Python 3.14
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
PERF_REQUEST_COUNT: ${{ inputs.request_count || '200' }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: astral-sh/setup-uv@v6
with:
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
# Upload results as a build artifact for comparison over time
# ------------------------------------------------------------------
- name: Upload perf results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: perf-results-${{ github.sha }}
Expand Down
Loading
Loading