Skip to content

Commit

Permalink
Update scala-library to 2.12.20 (#103)
Browse files Browse the repository at this point in the history
* Update scala-library to 2.12.20

* Regenerate GitHub Actions workflow

Executed command: sbt githubWorkflowGenerate
  • Loading branch information
scala-steward authored Sep 7, 2024
1 parent 78db4dc commit 74e2675
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
scala: [2.12.19]
scala: [2.12.20]
java: [zulu@8, temurin@17]
exclude:
- scala: 2.12.19
- scala: 2.12.20
java: zulu@8
os: macos-latest
- scala: 2.12.19
- scala: 2.12.20
java: temurin@17
os: windows-latest
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.19]
scala: [2.12.20]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -135,12 +135,12 @@ jobs:
- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Download target directories (2.12.19)
- name: Download target directories (2.12.20)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }}
name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }}

- name: Inflate target directories (2.12.19)
- name: Inflate target directories (2.12.20)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import Dependencies.*

ThisBuild / organization := "com.github.sbt.junit"
ThisBuild / scalaVersion := "2.12.19"
ThisBuild / scalaVersion := "2.12.20"

lazy val commonSettings: Seq[Setting[_]] = Def.settings(
Compile / javacOptions ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-project/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.19"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / libraryDependencies ++= Seq(
"com.github.sbt.junit" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test
)
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scalaVersion := "2.12.19"
scalaVersion := "2.12.20"
name := "simple"
libraryDependencies ++= Seq(
"com.github.sbt.junit" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test
Expand Down

0 comments on commit 74e2675

Please sign in to comment.