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

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 9, 2024
1 parent 7cc7e99 commit fc8539b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion showcases/flask/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Flask==3.0.3
itsdangerous==2.2.0
Jinja2==3.1.4
MarkupSafe==2.1.5
Werkzeug==3.0.3
Werkzeug==3.0.4
2 changes: 1 addition & 1 deletion showcases/gin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM golang:1.22
FROM golang:1.23

# Set destination for COPY
WORKDIR /app
Expand Down
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.2 AS runtime
FROM alpine:3.20.3 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
10 changes: 5 additions & 5 deletions showcases/springboot/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("org.springframework.boot") version "3.3.2"
id("org.springframework.boot") version "3.3.3"
id("io.spring.dependency-management") version "1.1.6"
kotlin("jvm") version "2.0.0"
kotlin("plugin.spring") version "2.0.0"
id("org.jetbrains.kotlin.plugin.serialization") version "2.0.0"
kotlin("jvm") version "2.0.20"
kotlin("plugin.spring") version "2.0.20"
id("org.jetbrains.kotlin.plugin.serialization") version "2.0.20"
}

group = "com.example"
Expand All @@ -32,7 +32,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
implementation("com.auth0:java-jwt:4.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2")

developmentOnly("org.springframework.boot:spring-boot-docker-compose")
runtimeOnly("org.postgresql:postgresql")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit fc8539b

Please sign in to comment.