From 3a98af2f8e74eda5380f5aa0e78da9608d5a0f3e Mon Sep 17 00:00:00 2001 From: kenji yoshida <6b656e6a69@gmail.com> Date: Sat, 13 Sep 2025 15:47:15 +0900 Subject: [PATCH] Update github actions setting --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ab8b54..a9f9de5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,13 @@ jobs: matrix: scalaversion: ["2.11.12", "2.12.11", "2.13.2"] steps: - - uses: actions/checkout@v2 - - uses: olafurpg/setup-scala@v10 + - uses: actions/checkout@v5 + - uses: actions/setup-java@v5 with: - java-version: "adopt@1.8" - - uses: coursier/cache-action@v5 + java-version: 8 + distribution: adopt + - uses: sbt/setup-sbt@v1 + - uses: coursier/cache-action@v6 - name: Build run: sbt "++${{ matrix.scalaversion }}" publishLocal - name: MiMa