From ec7a39c8901d24bf8afc80435f90d02ef6b8981c Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Tue, 21 Oct 2025 18:55:01 +0200 Subject: [PATCH] Build with latest Scala version(s) --- .github/workflows/ci.yml | 8 ++++---- project/Dependencies.scala | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7429225a..2fafdc8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - scala: [2.13.17, 2.12.20, 3.3.7] + scala: [2.13.17, 2.12.20, 3.7.3] java: [temurin@8, temurin@11] exclude: - java: temurin@8 @@ -156,12 +156,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.7) + - name: Download target directories (3.7.3) uses: actions/download-artifact@v5 with: - name: target-${{ matrix.os }}-3.3.7-${{ matrix.java }} + name: target-${{ matrix.os }}-3.7.3-${{ matrix.java }} - - name: Inflate target directories (3.3.7) + - name: Inflate target directories (3.7.3) run: | tar xf targets.tar rm targets.tar diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 212b4bac..242fd9f6 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -10,7 +10,7 @@ object Version { val scala212 = "2.12.20" val scala213 = "2.13.17" - val scala3 = "3.3.7" + val scala3 = "3.7.3" } object Library {