From d8d012b4dc5e9f5e7fd3d661b20efe0db530531a Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 15 Mar 2026 12:51:59 -0500 Subject: [PATCH] ci: bump Rust to 1.85-slim for edition 2024 support --- .woodpecker/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 1a4bd1b3..559b3963 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -8,20 +8,20 @@ clone: pipeline: rust-fmt-check: - image: rust:1.82-slim + image: rust:1.85-slim commands: - rustup component add rustfmt - cargo fmt --manifest-path src-tauri/Cargo.toml --check rust-clippy: - image: rust:1.82-slim + image: rust:1.85-slim commands: - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config - rustup component add clippy - cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings rust-tests: - image: rust:1.82-slim + image: rust:1.85-slim commands: - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config - cargo test --manifest-path src-tauri/Cargo.toml