diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 198b172..8cc722f 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.76-bookworm steps: - uses: actions/checkout@v3 - run: | @@ -34,7 +34,7 @@ jobs: ports: - 5432:5432 container: - image: rust:1.74-bookworm + image: rust:1.76-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.76-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.76-bookworm env: DATABASE_URL: postgres://postgres@postgres:5432 SQLX_OFFLINE: true diff --git a/Dockerfile.file-exchange b/Dockerfile.file-exchange index 4e298ec..a6b4350 100644 --- a/Dockerfile.file-exchange +++ b/Dockerfile.file-exchange @@ -1,4 +1,4 @@ -FROM rust:1-bullseye AS build-image +FROM rust:1.76-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..f58d778 100644 --- a/Dockerfile.file-service +++ b/Dockerfile.file-service @@ -1,4 +1,4 @@ -FROM rust:1-bullseye AS build-image +FROM rust:1.76-bullseye AS build-image # Update and install necessary packages, including libc6-dev for libresolv RUN apt-get update \