Skip to content

Commit

Permalink
Update scala-library to 2.12.20 (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo authored Oct 21, 2024
1 parent 08be2e1 commit e849fc0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ jobs:
tar xvf targets.tar
rm targets.tar
- name: Build and run tests
if: ${{ matrix.scala == '2.12.19' }}
if: ${{ matrix.scala == '2.12.20' }}
run: sbt -J-XX:+UseG1GC -J-Xmx5g -J-Xms5g -J-Xss16m ++${{ matrix.scala }} integtests/test
- name: Build and run tests
if: ${{ (matrix.scala != '3.3.3') && (matrix.scala != '2.12.19') }}
if: ${{ (matrix.scala != '3.3.3') && (matrix.scala != '2.12.20') }}
run: sbt -J-XX:+UseG1GC -J-Xmx5g -J-Xms5g -J-Xss16m ++${{ matrix.scala }} examples/compile
integtests/test
- name: Build and run tests
Expand Down
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ object Common extends AutoPlugin {
val majorVersion = "7"
val zioAwsVersionPrefix = s"$majorVersion.$awsSubVersion."

val scala212Version = "2.12.19"
val scala212Version = "2.12.20"
val scala213Version = "2.13.14"
val scala3Version = "3.3.3"

Expand Down
2 changes: 1 addition & 1 deletion zio-aws-codegen/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ val zioVersion = "2.1.9"
val awsVersion = "2.28.26"

sbtPlugin := true
scalaVersion := "2.12.19"
scalaVersion := "2.12.20"
organization := "io.github.vigoo"
scalacOptions := Seq("-Ypartial-unification", "-deprecation")
libraryDependencies ++= Seq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ trait GithubActionsGenerator {
)
.toList ++ separateProjectNames.map(List(_))

val scala212 = ScalaVersion("2.12.19")
val scala212 = ScalaVersion("2.12.20")
val scala213 = ScalaVersion("2.13.14")
val scala3 = ScalaVersion("3.3.3")
val scalaVersions = Seq(
Expand Down

0 comments on commit e849fc0

Please sign in to comment.