Skip to content

Commit

Permalink
updated rust version of container and toolchain action
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaven committed Apr 28, 2024
1 parent 9a9b132 commit 33a144e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-backend-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ jobs:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/build-ui-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,15 @@ jobs:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Install Trunk
run: cargo install --locked trunk
-
name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
target: wasm32-unknown-unknown
override: true
components: rustfmt, clippy, trunk
-
name: Build UI
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.74 as builder
FROM rust:1.77 as builder
WORKDIR /usr/src/app
COPY . .
RUN cargo build --bin monolith --release
Expand Down

0 comments on commit 33a144e

Please sign in to comment.