diff --git a/.github/workflows/integration-tests-cassandra.yml b/.github/workflows/integration-tests-cassandra.yml index e781167a..39bf45ef 100644 --- a/.github/workflows/integration-tests-cassandra.yml +++ b/.github/workflows/integration-tests-cassandra.yml @@ -42,7 +42,7 @@ jobs: uses: coursier/cache-action@v6 - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }} - run: sbt "++${{ matrix.scala-version }} cassandra/it:test" ${{ matrix.sbt-opts }} + run: sbt ++${{ matrix.scala-version }} cassandra/IntegrationTest/test ${{ matrix.sbt-opts }} env: # Disable Ryuk resource reaper since we always spin up fresh VMs TESTCONTAINERS_RYUK_DISABLED: true diff --git a/.github/workflows/integration-tests-jdbc.yml b/.github/workflows/integration-tests-jdbc.yml index ece3076d..f298abea 100644 --- a/.github/workflows/integration-tests-jdbc.yml +++ b/.github/workflows/integration-tests-jdbc.yml @@ -46,7 +46,7 @@ jobs: uses: coursier/cache-action@v6 - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }} - run: sbt "++${{ matrix.scala-version }} jdbc/it:test" ${{ matrix.sbt-opts }} + run: sbt ++${{ matrix.scala-version }} jdbc/IntegrationTest/test ${{ matrix.sbt-opts }} env: # Disable Ryuk resource reaper since we always spin up fresh VMs TESTCONTAINERS_RYUK_DISABLED: true diff --git a/.github/workflows/integration-tests-kafka.yml b/.github/workflows/integration-tests-kafka.yml index b7bea696..c0f1852d 100644 --- a/.github/workflows/integration-tests-kafka.yml +++ b/.github/workflows/integration-tests-kafka.yml @@ -42,7 +42,7 @@ jobs: uses: coursier/cache-action@v6 - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }} - run: sbt "++${{ matrix.scala-version }} kafka-test/it:test" ${{ matrix.sbt-opts }} + run: sbt ++${{ matrix.scala-version }} kafka-test/IntegrationTest/test ${{ matrix.sbt-opts }} env: # Disable Ryuk resource reaper since we always spin up fresh VMs TESTCONTAINERS_RYUK_DISABLED: true diff --git a/.github/workflows/integration-tests-slick.yml b/.github/workflows/integration-tests-slick.yml index 3c27f76c..66547929 100644 --- a/.github/workflows/integration-tests-slick.yml +++ b/.github/workflows/integration-tests-slick.yml @@ -46,7 +46,7 @@ jobs: uses: coursier/cache-action@v6 - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }} - run: sbt "++${{ matrix.scala-version }} slick/it:test" ${{ matrix.sbt-opts }} + run: sbt ++${{ matrix.scala-version }} slick/IntegrationTest/test ${{ matrix.sbt-opts }} env: # Disable Ryuk resource reaper since we always spin up fresh VMs TESTCONTAINERS_RYUK_DISABLED: true diff --git a/project/build.properties b/project/build.properties index 04267b14..081fdbbc 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.9 +sbt.version=1.10.0