From 49d390670abc7c85748561f72bbfe033d15671ae Mon Sep 17 00:00:00 2001 From: hopeyen Date: Mon, 6 May 2024 09:59:10 -0700 Subject: [PATCH] chore: pin rust version --- .github/workflows/tests.yml | 8 ++++---- Dockerfile.file-exchange | 2 +- Dockerfile.file-service | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 198b172..1bf9522 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: name: cargo fmt runs-on: ubuntu-latest container: - image: rust:1.74-bookworm + image: rust:1.77-bookworm steps: - uses: actions/checkout@v3 - run: | @@ -34,7 +34,7 @@ jobs: ports: - 5432:5432 container: - image: rust:1.74-bookworm + image: rust:1.77-bookworm env: DATABASE_URL: postgres://postgres@postgres:5432 SQLX_OFFLINE: true @@ -60,7 +60,7 @@ jobs: name: cargo clippy runs-on: ubuntu-latest container: - image: rust:1.74-bookworm + image: rust:1.77-bookworm env: DATABASE_URL: postgres://postgres@postgres:5432 SQLX_OFFLINE: true @@ -100,7 +100,7 @@ jobs: ports: - 5432:5432 container: - image: rust:1.74-bookworm + image: rust:1.77-bookworm env: DATABASE_URL: postgres://postgres@postgres:5432 SQLX_OFFLINE: true diff --git a/Dockerfile.file-exchange b/Dockerfile.file-exchange index 4e298ec..4c3e3de 100644 --- a/Dockerfile.file-exchange +++ b/Dockerfile.file-exchange @@ -1,4 +1,4 @@ -FROM rust:1-bullseye AS build-image +FROM rust:1.77-bullseye AS build-image # Update and install necessary packages, including libc6-dev for libresolv RUN apt-get update \ diff --git a/Dockerfile.file-service b/Dockerfile.file-service index 085f187..a24df8c 100644 --- a/Dockerfile.file-service +++ b/Dockerfile.file-service @@ -1,4 +1,4 @@ -FROM rust:1-bullseye AS build-image +FROM rust:1.77-bullseye AS build-image # Update and install necessary packages, including libc6-dev for libresolv RUN apt-get update \