ci: bump rust image to 1.85 (edition 2024 support)
Some checks failed
ci/woodpecker/pr/check Pipeline failed
CI / Check (pull_request) Has been cancelled
CI / Format (pull_request) Has been cancelled
CI / Clippy (pull_request) Has been cancelled
CI / Build (macos-latest) (pull_request) Has been cancelled
CI / Build (ubuntu-latest) (pull_request) Has been cancelled
CI / Build (windows-latest) (pull_request) Has been cancelled

This commit is contained in:
Mikhail Kilin
2026-02-22 17:12:14 +03:00
parent 264f183510
commit c7865b46a7

View File

@@ -3,13 +3,13 @@ when:
steps:
- name: fmt
image: rust:1.84
image: rust:1.85
commands:
- rustup component add rustfmt
- cargo fmt -- --check
- name: clippy
image: rust:1.84
image: rust:1.85
environment:
CARGO_HOME: /tmp/cargo
commands:
@@ -18,7 +18,7 @@ steps:
- cargo clippy -- -D warnings
- name: test
image: rust:1.84
image: rust:1.85
environment:
CARGO_HOME: /tmp/cargo
commands: