Skip to content

Commit

Permalink
Merge pull request #1197 from zio/update/scala-library-2.12.18
Browse files Browse the repository at this point in the history
Update scala-library to 2.12.18
  • Loading branch information
vigoo authored Oct 27, 2023
2 parents cef1495 + 008b47b commit 44efe67
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.17' }}
if: ${{ matrix.scala == '2.12.18' }}
run: sbt -J-XX:+UseG1GC -J-Xmx5g -J-Xms5g -J-Xss16m ++${{ matrix.scala }} integtests/test
- name: Build and run tests
if: ${{ (matrix.scala != '3.2.1') && (matrix.scala != '2.12.17') }}
if: ${{ (matrix.scala != '3.2.1') && (matrix.scala != '2.12.18') }}
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 = "6"
val zioAwsVersionPrefix = s"$majorVersion.$awsSubVersion."

val scala212Version = "2.12.17"
val scala212Version = "2.12.18"
val scala213Version = "2.13.12"
val scala3Version = "3.2.2"

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.0.6"
val awsVersion = "2.20.162"

sbtPlugin := true
scalaVersion := "2.12.17"
scalaVersion := "2.12.18"
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 @@ -35,7 +35,7 @@ trait GithubActionsGenerator {
)
.toList ++ separateProjectNames.map(List(_))

val scala212 = ScalaVersion("2.12.17")
val scala212 = ScalaVersion("2.12.18")
val scala213 = ScalaVersion("2.13.12")
val scala3 = ScalaVersion("3.2.2")
val scalaVersions = Seq(
Expand Down

0 comments on commit 44efe67

Please sign in to comment.