Skip to content

Commit

Permalink
chore: pin rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeyen committed May 6, 2024
1 parent 3ae327d commit 0fdfa1f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.file-exchange
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.file-service
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down

0 comments on commit 0fdfa1f

Please sign in to comment.