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 \