diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml index 3529154..a92eacc 100644 --- a/.woodpecker/build.yml +++ b/.woodpecker/build.yml @@ -7,7 +7,7 @@ when: 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/lint.yml b/.woodpecker/lint.yml index 4c09bc4..197cb95 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -3,11 +3,11 @@ platform: 'linux/amd64' when: branch: exclude: [main] - event: push + event: [push, pull_request] steps: lint: - image: 'rust:1.70-alpine3.18' + image: 'rust:1.79-alpine3.19' commands: - rustup component add rustfmt - cargo fmt -- --check