From c1534b8df1b4a35d07fca82ab9955bf8966eb76e Mon Sep 17 00:00:00 2001 From: Chewing_Bever Date: Sun, 7 Jul 2024 10:53:16 +0200 Subject: [PATCH] chore(ci): bump rust version --- .woodpecker/build.yml | 2 +- .woodpecker/lint.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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