diff --git a/.woodpecker.yml b/.woodpecker.yml index d666ad5..ebcd528 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -16,7 +16,7 @@ steps: # Run Tests test: name: test - image: rust:1.75-bookworm + image: rust:latest commands: - echo "nameserver 1.1.1.1" > /etc/resolv.conf - echo "nameserver 1.0.0.1" >> /etc/resolv.conf @@ -34,7 +34,7 @@ steps: # Build Linux x86_64 release binary build-linux-x86_64: name: build-linux-x86_64 - image: rust:1.75-bookworm + image: rust:latest depends_on: [test] commands: - echo "nameserver 1.1.1.1" > /etc/resolv.conf @@ -54,7 +54,7 @@ steps: # Build Linux aarch64 release binary (cross-compile) build-linux-aarch64: name: build-linux-aarch64 - image: rust:1.75-bookworm + image: rust:latest depends_on: [test] failure: ignore commands: @@ -81,7 +81,7 @@ steps: # Cargo audit for known vulnerabilities cargo-audit: name: cargo-audit - image: rust:1.75-bookworm + image: rust:latest commands: - echo "nameserver 1.1.1.1" > /etc/resolv.conf - echo "nameserver 1.0.0.1" >> /etc/resolv.conf @@ -128,7 +128,7 @@ steps: # Clippy linting clippy: name: clippy - image: rust:1.75-bookworm + image: rust:latest commands: - echo "nameserver 1.1.1.1" > /etc/resolv.conf - echo "nameserver 1.0.0.1" >> /etc/resolv.conf @@ -142,7 +142,7 @@ steps: # Format check fmt-check: name: fmt-check - image: rust:1.75-bookworm + image: rust:latest commands: - echo "nameserver 1.1.1.1" > /etc/resolv.conf - echo "nameserver 1.0.0.1" >> /etc/resolv.conf