From d68b555ed9deb323e6711323fa445e61c1915a8a Mon Sep 17 00:00:00 2001 From: Tsuyoshi Yoshizawa Date: Mon, 18 Aug 2025 19:53:40 +0900 Subject: [PATCH] add uses sbt/setup-sbt@v1 --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb05ac3..df8e5ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,12 @@ jobs: java: 11 runs-on: ${{ matrix.os }} steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup - uses: actions/setup-java@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-java@v4 with: distribution: adopt java-version: ${{ matrix.java }} + - uses: sbt/setup-sbt@v1 - name: Coursier cache uses: coursier/cache-action@v6 - name: Build and test