Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/docker-contrib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/build-push-action
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0

# Build locally Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Docker build with unit tests
id: build-and-test
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
context: .
load: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker-publish-when-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Detect a forked repository
if: ${{ github.repository != env.ORIGIN_REPOSITORY }}
Expand All @@ -56,13 +56,13 @@ jobs:
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -72,7 +72,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Docker build with unit tests
id: build-and-test
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
context: .
load: true
Expand All @@ -96,7 +96,7 @@ jobs:
# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ env.REGISTRY_USERNAME }}
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Docker build for many platforms and push into ${{ env.REGISTRY }}
if: ${{ contains(github.ref, 'refs/tags/') }}
id: build-and-push
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
context: .
platforms: linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nexus-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
SONATYPE_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.NEXUS_USERNAME }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-java@v5
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ lazy val root = (project in file("."))
// https://github.com/confluentinc/schema-registry/blob/master/pom.xml
libraryDependencies ++= Seq(
"org.apache.kafka" %% "kafka" % "3.9.2",
"io.cucumber" %% "cucumber-scala" % "8.39.1",
"io.cucumber" %% "cucumber-scala" % "8.39.7",
"org.scalatest" %% "scalatest" % "3.2.20",
"com.typesafe" % "config" % "1.4.8",
"io.gatling" % "gatling-jsonpath" % "3.15.0",
"com.typesafe" % "config" % "1.4.9",
"io.gatling" % "gatling-jsonpath" % "3.15.1",
"com.lihaoyi" %% "os-lib" % "0.11.8",
"ch.qos.logback" % "logback-classic" % "1.5.32" % Runtime,
"ch.qos.logback" % "logback-classic" % "1.6.3" % Runtime,
"dev.zio" %% "zio" % zioVersion,
"dev.zio" %% "zio-streams" % zioVersion,
"dev.zio" %% "zio-logging-slf4j2" % "2.5.3",
),
// only tests
libraryDependencies ++= Seq(
"io.cucumber" % "cucumber-junit" % "7.34.3",
"io.cucumber" % "cucumber-junit" % "7.34.7",
"org.scalamock" %% "scalamock" % "7.5.5",
"org.scalacheck" %% "scalacheck" % "1.19.0",
"dev.zio" %% "zio-test" % zioVersion,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.12.11
sbt.version = 2.0.6
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.4")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.7.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.4.1")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.12.0")
Loading