From f7b37fde5b34da0f723db3051fc9f7dc290f0886 Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Sun, 26 Jul 2026 20:07:06 -0500 Subject: [PATCH 1/2] update to actions/checkout@v7 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ee58ed9..5ba44af4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: check: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: rustup toolchain install stable --profile=minimal --component=clippy --component=rustfmt - run: cargo clippy -- -D warnings - run: cargo fmt --all -- --check @@ -24,7 +24,7 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: rustup toolchain install nightly --profile=minimal - run: cargo +nightly bench @@ -34,6 +34,6 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: rustup toolchain install stable --profile=minimal - run: cargo test --features=bundled From c3b5f1aff226d9578c5d8df35eadb27d917a793d Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Sun, 26 Jul 2026 20:12:40 -0500 Subject: [PATCH 2/2] remove bench action since cargo-bench isn't happy with Tokio right now --- .github/workflows/build.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5ba44af4..f7480fad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,16 +18,6 @@ jobs: - run: cargo clippy -- -D warnings - run: cargo fmt --all -- --check - bench: - strategy: - matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v7 - - run: rustup toolchain install nightly --profile=minimal - - run: cargo +nightly bench - test: strategy: matrix: