From ee34c4b527aa27f586674d1c2f635b9c68216216 Mon Sep 17 00:00:00 2001 From: Daniel Slapman Date: Tue, 12 May 2026 08:56:39 +0200 Subject: [PATCH] Bump CI actions to Node.js 24-compatible versions - actions/checkout v4 -> v6 - actions/setup-java v4 -> v5 - coursier/cache-action v6 -> v8 Node.js 20 actions will be force-migrated to Node.js 24 by GitHub starting June 2026 and removed from runners in September 2026. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c92f64e..8f21e14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-java@v4 + - uses: actions/setup-java@v5 with: distribution: temurin java-version: 17 @@ -20,7 +20,7 @@ jobs: - uses: sbt/setup-sbt@v1 - name: Coursier cache - uses: coursier/cache-action@v6 + uses: coursier/cache-action@v8 - name: Check formatting run: sbt fixCheck