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
50 changes: 25 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
lint-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Rust
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4
Expand All @@ -62,14 +62,14 @@ jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.12"

- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand All @@ -88,10 +88,10 @@ jobs:
lint-toml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install taplo
uses: taiki-e/install-action@v2
uses: taiki-e/install-action@v2.85.5
with:
tool: taplo-cli

Expand All @@ -103,22 +103,22 @@ jobs:
if: inputs.build_mode == 'release' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Ensure [patch.crates-io] is empty
run: python3 dev/check_crates_patch.py

generate-license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

- name: Install cargo-license
uses: taiki-e/install-action@v2
uses: taiki-e/install-action@v2.85.5
with:
tool: cargo-license

Expand All @@ -142,7 +142,7 @@ jobs:
matrix:
python-tag: ["abi3", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- run: rm LICENSE.txt
- name: Download LICENSE.txt
Expand All @@ -159,7 +159,7 @@ jobs:
with:
key: ${{ inputs.build_mode }}-${{ matrix.python-tag }}

- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
matrix:
python-tag: ["abi3", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- run: rm LICENSE.txt
- name: Download LICENSE.txt
Expand All @@ -250,7 +250,7 @@ jobs:
with:
key: ${{ inputs.build_mode }}-${{ matrix.python-tag }}

- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
os: [macos-latest, windows-latest]
python-tag: ["abi3", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Rust
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4
Expand All @@ -315,12 +315,12 @@ jobs:

- name: Setup Python (free-threaded)
if: matrix.python-tag != 'abi3'
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-tag }}
freethreaded: true

- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
matrix:
python-tag: ["abi3", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Rust
uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4
Expand All @@ -398,12 +398,12 @@ jobs:

- name: Setup Python (free-threaded)
if: matrix.python-tag != 'abi3'
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-tag }}
freethreaded: true

- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand Down Expand Up @@ -444,7 +444,7 @@ jobs:
if: inputs.build_mode == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: rm LICENSE.txt
- name: Download LICENSE.txt
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -516,23 +516,23 @@ jobs:
fi

- name: Checkout docs sources
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout docs target branch
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ steps.target-branch.outputs.value }}
path: docs-target

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.10"

- name: Install dependencies
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4
with:
languages: actions

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4
with:
category: "/language:actions"
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Audit licenses
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ jobs:
# Free-threaded builds — one wheel per interpreter.
- { python-version: "3.14t", wheel-tag: "3.14t", freethreaded: true }
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Python
id: setup-python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
freethreaded: ${{ matrix.freethreaded }}

- name: Cache Cargo
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cargo
key: cargo-cache-stable-${{ hashFiles('Cargo.lock') }}

- name: Install dependencies
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d
with:
enable-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up protoc
uses: arduino/setup-protoc@v3
Expand Down
Loading
Loading