From c195655089978a77165f5004818898ad18dac69c Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Sat, 24 Aug 2024 14:24:05 +0200 Subject: [PATCH] Update rust toolchain to 1.80 --- .gitea/images/Dockerfile | 2 +- .gitea/workflows/gitea-ci.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/images/Dockerfile b/.gitea/images/Dockerfile index 08c03a3..f460b68 100644 --- a/.gitea/images/Dockerfile +++ b/.gitea/images/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/rust:1.79 +FROM docker.io/library/rust:1.80 RUN rustup component add \ clippy \ diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml index 1365757..0af064c 100644 --- a/.gitea/workflows/gitea-ci.yaml +++ b/.gitea/workflows/gitea-ci.yaml @@ -13,7 +13,7 @@ env: jobs: build_and_test: name: Build and Test - container: docker.io/drrobot/musichoard-ci:rust-1.79 + container: docker.io/drrobot/musichoard-ci:rust-1.80 env: BEETSDIR: ./ LLVM_PROFILE_FILE: target/debug/profraw/musichoard-%p-%m.profraw @@ -48,7 +48,7 @@ jobs: lint: name: Lint - container: docker.io/drrobot/musichoard-ci:rust-1.75 + container: docker.io/drrobot/musichoard-ci:rust-1.80 steps: - uses: actions/checkout@v3 - run: cargo clippy --no-default-features --all-targets -- -D warnings