Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

chore(deps): update all non-major dependencies #54

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion showcases/rocket/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN cargo chef cook --release --target x86_64-unknown-linux-musl --recipe-path r
COPY . .
RUN cargo build --release --target x86_64-unknown-linux-musl

FROM alpine:3.20.1 AS runtime
FROM alpine:3.20.2 AS runtime
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/hurl-rocket /usr/local/bin/
ENV ROCKET_ADDRESS=0.0.0.0
EXPOSE 8001
Expand Down
2 changes: 1 addition & 1 deletion showcases/springboot/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("org.springframework.boot") version "3.3.1"
id("org.springframework.boot") version "3.3.2"
id("io.spring.dependency-management") version "1.1.6"
kotlin("jvm") version "2.0.0"
kotlin("plugin.spring") version "2.0.0"
Expand Down