diff --git a/.github/workflows/build-middleware/action.yml b/.github/workflows/build-middleware/action.yml index 287a823e..96266709 100644 --- a/.github/workflows/build-middleware/action.yml +++ b/.github/workflows/build-middleware/action.yml @@ -47,12 +47,8 @@ runs: cache: sbt if: contains(inputs.os-name, 'macos-14') - - name: Install SBT - macos-13 & macos-14 - shell: bash - run: brew install sbt - if: | - contains(inputs.os-name, 'macos-13') || - contains(inputs.os-name, 'macos-14') + - name: Setup sbt + uses: sbt/setup-sbt@v1 - name: Make _install directory to store lib files 🔧 shell: bash diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 96aa25f4..62ed3b6d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ on: jobs: analyze: name: Analyze - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 permissions: actions: read contents: read diff --git a/.github/workflows/ratCheck.yml b/.github/workflows/ratCheck.yml index 0aa4410e..537eaf6d 100644 --- a/.github/workflows/ratCheck.yml +++ b/.github/workflows/ratCheck.yml @@ -35,6 +35,9 @@ jobs: distribution: temurin java-version: 8 + - name: Setup sbt + uses: sbt/setup-sbt@v1 + - name: Check out Repository 🛎️ uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 03415b6e..9478909b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -196,6 +196,9 @@ jobs: java-version: 8 cache: sbt + - name: Setup sbt + uses: sbt/setup-sbt@v1 + - name: Make _install directory to store lib files run: mkdir -p _install diff --git a/.github/workflows/scala-format.yml b/.github/workflows/scala-format.yml index ff13161c..ea9fe62c 100644 --- a/.github/workflows/scala-format.yml +++ b/.github/workflows/scala-format.yml @@ -22,7 +22,7 @@ on: jobs: build: name: Scala Code Format - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout Current Branch (full) 🛎️ uses: actions/checkout@v4 diff --git a/.github/workflows/scala-steward.yml b/.github/workflows/scala-steward.yml index c5099afa..1f69f9f1 100644 --- a/.github/workflows/scala-steward.yml +++ b/.github/workflows/scala-steward.yml @@ -19,7 +19,7 @@ on: jobs: scala-steward: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 name: Scala Steward 🔔 steps: - name: Scala Steward 🔔 diff --git a/.github/workflows/ts-format.yml b/.github/workflows/ts-format.yml index bca818b4..0cd48a4b 100644 --- a/.github/workflows/ts-format.yml +++ b/.github/workflows/ts-format.yml @@ -22,7 +22,7 @@ on: jobs: build: name: TypeScript code is properly formatted - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout current branch (full) 🛎️ uses: actions/checkout@v4