Skip to content

ci(deps): bump actions/checkout from 4 to 5 #1045

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 18, 2025
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
python: ${{ steps.filter.outputs.python }}
extensions: ${{ steps.filter.outputs.llvm }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./.github/actions/check-changes
id: filter

Expand All @@ -58,7 +58,7 @@ jobs:
# Fail on rust compiler warnings.
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
if: ${{ needs.changes.outputs.python == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Set up uv
uses: astral-sh/setup-uv@v6
Expand All @@ -115,7 +115,7 @@ jobs:
permissions:
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
Expand All @@ -139,7 +139,7 @@ jobs:
runs-on: ubuntu-latest
name: tests (Rust stable, no features)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- id: toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -159,7 +159,7 @@ jobs:
runs-on: ubuntu-latest
name: tests (Rust stable, all features)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- id: toolchain
uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
rust: ['1.85', beta]
name: tests (Rust ${{ matrix.rust }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- id: toolchain
uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
runs-on: ubuntu-latest
name: tests (Rust nightly, coverage)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- uses: dtolnay/rust-toolchain@master
with:
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
runs-on: ubuntu-latest
name: tests (Python, coverage)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
name: Check standard extensions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
Expand All @@ -328,7 +328,7 @@ jobs:
if: ${{ needs.changes.outputs.extensions == 'true' }}
name: Check extension versions
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Need full history to compare with main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-pure-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
env:
SHOULD_RUN: ${{ github.event_name != 'release' || ( github.ref_type == 'tag' && startsWith(github.ref, format('refs/tags/{0}-v', matrix.target.dir)) ) }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: ${{ steps.check-tag.outputs.run == 'true' }}
- name: Run sccache-cache
if: ${{ steps.check-tag.outputs.run == 'true' }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- runner: ubuntu-latest
target: ppc64le
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.x
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- runner: ubuntu-latest
target: armv7
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.x
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
- runner: windows-latest
target: x86
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.x
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
- runner: macos-14
target: aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.x
Expand All @@ -175,7 +175,7 @@ jobs:
if: ${{ needs.check-tag.outputs.run == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# release-please always uses this branch name.
if: ${{ github.ref == 'refs/heads/release-please--branches--main--components--tket-py' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Set up uv
uses: astral-sh/setup-uv@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ secrets.HUGRBOT_PAT }}
Expand All @@ -48,7 +48,7 @@ jobs:
id-token: write # Required for OIDC token exchange
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ secrets.HUGRBOT_PAT }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
rust: ${{ steps.filter.outputs.rust }}
python: ${{ steps.filter.outputs.python }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./.github/actions/check-changes
id: filter

Expand All @@ -29,7 +29,7 @@ jobs:
LD_LIBRARY_PATH: ${{ github.workspace }}/tket-c-api/lib
steps:
- name: Checkout tket
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install tket-c-api library
uses: ./.github/actions/tket-c-api
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unsoundness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: "Miri"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
Expand Down
Loading