Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all dependencies #52

Merged
merged 1 commit into from
Feb 4, 2025
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21.0.5_11-jdk AS builder
FROM eclipse-temurin:21.0.6_7-jdk AS builder

ENV SCALA_VERSION=2.13.14
ENV SBT_VERSION=1.10.1
Expand Down Expand Up @@ -33,14 +33,14 @@
RUN sbt assembly
RUN sbt dependencyUpdatesReport

FROM eclipse-temurin:21.0.5_11-jre AS release
FROM eclipse-temurin:21.0.6_7-jre AS release
ENV KAFKA_BOOTSTRAP_SERVERS="localhost:9092"
ENV KAFKA_USERNAME=""
ENV KAFKA_PASSWORD=""

Check warning on line 39 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "KAFKA_PASSWORD") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV KAFKA_SCHEMA_REGISTRY_URL="http://localhost:8081"
ENV KAFKA_SCHEMA_REGISTRY_BASIC_AUTH_CREDENTIALS_SOURCE=""

Check warning on line 41 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "KAFKA_SCHEMA_REGISTRY_BASIC_AUTH_CREDENTIALS_SOURCE") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV KAFKA_SCHEMA_REGISTRY_KEY=""

Check warning on line 42 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "KAFKA_SCHEMA_REGISTRY_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV KAFKA_SCHEMA_REGISTRY_SECRET=""

Check warning on line 43 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "KAFKA_SCHEMA_REGISTRY_SECRET") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

ENV CONFIG_FILE="application.conf"
# example KAPOEIRA_JAVA_SYSTEM_PROPERTIES="-Dkey1=value1 -Dkey2=value2"
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ lazy val root = (project in file("."))
// https://github.com/confluentinc/schema-registry/blob/master/pom.xml
libraryDependencies ++= Seq(
"org.apache.kafka" %% "kafka" % "3.2.3",
"io.cucumber" %% "cucumber-scala" % "8.25.1",
"io.cucumber" %% "cucumber-scala" % "8.26.0",
"org.scalatest" %% "scalatest" % "3.2.19",
"com.typesafe" % "config" % "1.4.3",
"io.gatling" % "gatling-jsonpath" % "3.13.3",
Expand All @@ -50,7 +50,7 @@ lazy val root = (project in file("."))
),
// only tests
libraryDependencies ++= Seq(
"io.cucumber" % "cucumber-junit" % "7.20.1",
"io.cucumber" % "cucumber-junit" % "7.21.0",
"org.scalamock" %% "scalamock" % "6.1.1",
"org.scalacheck" %% "scalacheck" % "1.18.1",
"dev.zio" %% "zio-test" % zioVersion,
Expand Down