diff --git a/.github/workflows/ci-delta-app.yml b/.github/workflows/ci-delta-app.yml index 80317e0901..dae5499240 100644 --- a/.github/workflows/ci-delta-app.yml +++ b/.github/workflows/ci-delta-app.yml @@ -25,6 +25,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Unit tests run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ diff --git a/.github/workflows/ci-delta-core.yml b/.github/workflows/ci-delta-core.yml index 2920a03a90..a6bfc1143b 100644 --- a/.github/workflows/ci-delta-core.yml +++ b/.github/workflows/ci-delta-core.yml @@ -29,6 +29,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Unit tests run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ diff --git a/.github/workflows/ci-delta-plugins.yml b/.github/workflows/ci-delta-plugins.yml index b02f031d8c..1624bec20b 100644 --- a/.github/workflows/ci-delta-plugins.yml +++ b/.github/workflows/ci-delta-plugins.yml @@ -30,6 +30,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Add hosts to /etc/hosts run: | sudo echo "127.0.0.1 other.my-domain.com" | sudo tee -a /etc/hosts diff --git a/.github/workflows/ci-delta-ship.yml b/.github/workflows/ci-delta-ship.yml index 81816f7267..f9d7da7925 100644 --- a/.github/workflows/ci-delta-ship.yml +++ b/.github/workflows/ci-delta-ship.yml @@ -33,6 +33,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Clean, build Delta & Storage images run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ diff --git a/.github/workflows/ci-delta-static-analysis.yml b/.github/workflows/ci-delta-static-analysis.yml index af1182b129..9022548a8b 100644 --- a/.github/workflows/ci-delta-static-analysis.yml +++ b/.github/workflows/ci-delta-static-analysis.yml @@ -26,6 +26,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Static analysis run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ diff --git a/.github/workflows/ci-docs-ext-links.yml b/.github/workflows/ci-docs-ext-links.yml index 1f05031495..040f7a75dc 100644 --- a/.github/workflows/ci-docs-ext-links.yml +++ b/.github/workflows/ci-docs-ext-links.yml @@ -18,5 +18,7 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Review run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateLinks diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index 8984895e82..e5314ba607 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -24,5 +24,7 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Review run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateInternalLinks diff --git a/.github/workflows/ci-integration-tests.yml b/.github/workflows/ci-integration-tests.yml index ab972b0976..c88e90f460 100644 --- a/.github/workflows/ci-integration-tests.yml +++ b/.github/workflows/ci-integration-tests.yml @@ -25,6 +25,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Clean, build Delta image run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ diff --git a/.github/workflows/ci-release-docker.yml b/.github/workflows/ci-release-docker.yml index 9b7612aab9..33149cb2a1 100644 --- a/.github/workflows/ci-release-docker.yml +++ b/.github/workflows/ci-release-docker.yml @@ -22,6 +22,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Set up proxy for docker buildx run: | echo http_proxy=${http_proxy} >> $GITHUB_ENV diff --git a/.github/workflows/ci-release-sonatype.yml b/.github/workflows/ci-release-sonatype.yml index e361c8c5cf..937b8d70b0 100644 --- a/.github/workflows/ci-release-sonatype.yml +++ b/.github/workflows/ci-release-sonatype.yml @@ -27,5 +27,7 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Publish To Sonatype run: sbt -Dsbt.color=always -Dsbt.supershell=false ci-release \ No newline at end of file diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index 5bee308812..9e989d69d0 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -29,6 +29,8 @@ jobs: java-version: '21' cache: 'sbt' check-latest: true + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Set up proxy for docker buildx run: | echo http_proxy=${http_proxy} >> $GITHUB_ENV