diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7ace42..73e14ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,5 +7,9 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - - uses: olafurpg/setup-scala@v14 + - uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 8 + cache: sbt - run: sbt compile diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1794102..2eaf28d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,11 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: olafurpg/setup-scala@v14 + - uses: actions/setup-scala@v3 + with: + distribution: temurin + java-version: 8 + cache: sbt - run: sbt ci-release env: PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}