diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml index 3529154..54b5bac 100644 --- a/.woodpecker/build.yml +++ b/.woodpecker/build.yml @@ -3,11 +3,11 @@ platform: 'linux/amd64' when: branch: exclude: [main] - event: [push, pull_request] + event: push steps: build: - image: 'rust:1.70-alpine3.18' + image: 'rust:1.79-alpine3.19' commands: - apk add --no-cache build-base libarchive libarchive-dev - cargo build --verbose diff --git a/.woodpecker/clippy.yml b/.woodpecker/clippy.yml index b1c86a7..2d74a26 100644 --- a/.woodpecker/clippy.yml +++ b/.woodpecker/clippy.yml @@ -7,7 +7,7 @@ when: steps: clippy: - image: 'rust:1.70-alpine3.18' + image: 'rust:1.79-alpine3.19' commands: - rustup component add clippy - cargo clippy -- --no-deps -Dwarnings diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index 4c09bc4..ba3b7ab 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -7,7 +7,7 @@ when: steps: lint: - image: 'rust:1.70-alpine3.18' + image: 'rust:1.79-alpine3.19' commands: - rustup component add rustfmt - cargo fmt -- --check