From f9292f83a6f0b2045d15445aafd9d1eea8a254c2 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 11 Dec 2024 15:28:10 +0100 Subject: [PATCH] Update scala3-library to 3.6.2 (#363) * Update scala3-library to 3.6.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 82e4480..a7d5454 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.20, 2.13.15, 3.5.2] + scala: [2.11.12, 2.12.20, 2.13.15, 3.6.2] java: [temurin@11, temurin@17] runs-on: ${{ matrix.os }} steps: diff --git a/project/ScalaVersions.scala b/project/ScalaVersions.scala index df4900a..6c81d62 100644 --- a/project/ScalaVersions.scala +++ b/project/ScalaVersions.scala @@ -2,7 +2,7 @@ object ScalaVersions { val scala211 = "2.11.12" val scala212 = "2.12.20" val scala213 = "2.13.15" - val scala3 = "3.5.2" + val scala3 = "3.6.2" def allScalaVersions(excluding: String => Boolean = _ => false): List[String] = List(scala211, scala212, scala213, scala3).filterNot(excluding)