From 5f97f6ae90908e97109f15b119c8ff2d12009d2d Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Tue, 1 Oct 2024 12:06:45 +0200 Subject: [PATCH] Fix updating of scala versions with scala steward --- .scala-steward.conf | 5 ++++- build.sbt | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.scala-steward.conf b/.scala-steward.conf index fd1e895..de71b6a 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -1,5 +1,8 @@ # Latest version of jgit which was compiled with JDK 8 which this project targets -updates.pin = [{ groupId = "org.eclipse.jgit", version = "5.13.0.202109080827-r" }] +updates.pin = [ + { groupId = "org.eclipse.jgit", version = "5.13.0.202109080827-r" }, + { groupId = "org.scala-lang", artifactId = "scala-library", version = "2.12." } +] updates.ignore = [ { groupId = "org.eclipse.jgit" } ] diff --git a/build.sbt b/build.sbt index a688917..a7fc84e 100644 --- a/build.sbt +++ b/build.sbt @@ -72,7 +72,7 @@ inThisBuild( licenses := Seq( "Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0") ), - scalaVersion := "2.12.17", // scala-steward:off + scalaVersion := "2.12.19", versionScheme := Some("semver-spec") ) )