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
24 changes: 12 additions & 12 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@29eef336d9b2848a0b548edc03f92a220660cdb8
Expand All @@ -62,7 +62,7 @@ jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Python
uses: actions/setup-python@v5
Expand All @@ -88,7 +88,7 @@ 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
Expand All @@ -103,15 +103,15 @@ 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
with:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
matrix:
python-tag: ["abi3", "3.13t", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- run: rm LICENSE.txt
- name: Download LICENSE.txt
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
matrix:
python-tag: ["abi3", "3.13t", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- run: rm LICENSE.txt
- name: Download LICENSE.txt
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
os: [macos-latest, windows-latest]
python-tag: ["abi3", "3.13t", "3.14t"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8

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

- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8

Expand Down Expand Up @@ -430,7 +430,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 @@ -502,11 +502,11 @@ 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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- { python-version: "3.13t", wheel-tag: "3.13t", freethreaded: true }
- { 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
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