diff --git a/.github/workflows/docker-contrib.yml b/.github/workflows/docker-contrib.yml index f9fc5d7..6d1ccb8 100644 --- a/.github/workflows/docker-contrib.yml +++ b/.github/workflows/docker-contrib.yml @@ -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 diff --git a/.github/workflows/docker-publish-when-release.yml b/.github/workflows/docker-publish-when-release.yml index de603e4..e91a185 100644 --- a/.github/workflows/docker-publish-when-release.yml +++ b/.github/workflows/docker-publish-when-release.yml @@ -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 }} @@ -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: | @@ -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 @@ -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 }} @@ -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 diff --git a/.github/workflows/nexus-release.yml b/.github/workflows/nexus-release.yml index cef23a8..6b49837 100644 --- a/.github/workflows/nexus-release.yml +++ b/.github/workflows/nexus-release.yml @@ -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 diff --git a/build.sbt b/build.sbt index 51bf834..ba3a50a 100644 --- a/build.sbt +++ b/build.sbt @@ -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, diff --git a/project/build.properties b/project/build.properties index c93d181..fdcf9af 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.12.11 +sbt.version = 2.0.6 diff --git a/project/plugins.sbt b/project/plugins.sbt index ff985ec..96de47c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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")