From 976e05b7e19d8c889d3244c48f7e7f9aff6a68b0 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 17 May 2024 15:33:54 +0200 Subject: [PATCH] Update scala3-library to 3.4.2 (#305) * Update scala3-library to 3.4.2 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 2 +- project/ScalaVersions.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba1677c..f71315c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.11.12, 2.12.19, 2.13.14, 3.4.1] + scala: [2.11.12, 2.12.19, 2.13.14, 3.4.2] java: [temurin@11, temurin@17] runs-on: ${{ matrix.os }} steps: diff --git a/project/ScalaVersions.scala b/project/ScalaVersions.scala index 5848d30..951cf7b 100644 --- a/project/ScalaVersions.scala +++ b/project/ScalaVersions.scala @@ -2,7 +2,7 @@ object ScalaVersions { val scala211 = "2.11.12" val scala212 = "2.12.19" val scala213 = "2.13.14" - val scala3 = "3.4.1" + val scala3 = "3.4.2" def allScalaVersions(excluding: String => Boolean = _ => false): List[String] = List(scala211, scala212, scala213, scala3).filterNot(excluding)