diff --git a/.woodpecker/code_tests.yaml b/.woodpecker/code_tests.yaml index 1c00bc3..9a5c03d 100644 --- a/.woodpecker/code_tests.yaml +++ b/.woodpecker/code_tests.yaml @@ -3,16 +3,16 @@ when: - push steps: - name: Clippy linter - image: rust:1.91.1-bullseye + image: rust:1.92.0-bullseye commands: - rustup component add clippy - cargo clippy - name: Rust fmt - image: rust:1.91.1-bullseye + image: rust:1.92.0-bullseye commands: - rustup component add rustfmt - cargo fmt --check - name: Unit tests - image: rust:1.91.1-bullseye + image: rust:1.92.0-bullseye commands: - cargo test