diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml index 5779344..7adfe62 100644 --- a/.woodpecker/build.yml +++ b/.woodpecker/build.yml @@ -5,7 +5,7 @@ branches: pipeline: build: - image: 'rust:1.69' + image: 'rust:1.76' commands: - cargo build --verbose - cargo test --verbose diff --git a/.woodpecker/clippy.yml b/.woodpecker/clippy.yml index 92851e5..d34cdf6 100644 --- a/.woodpecker/clippy.yml +++ b/.woodpecker/clippy.yml @@ -5,7 +5,7 @@ branches: pipeline: clippy: - image: 'rust:1.69' + image: 'rust:1.76' commands: - rustup component add clippy - cargo clippy -- --no-deps -Dwarnings diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index ad2b612..89c1d62 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -5,7 +5,7 @@ branches: pipeline: lint: - image: 'rust:1.69' + image: 'rust:1.76' commands: - rustup component add rustfmt - cargo fmt -- --check diff --git a/Dockerfile b/Dockerfile index 9d47548..12e9300 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.69-alpine AS builder +FROM rust:1.76-alpine AS builder ARG DI_VER=1.2.5