Skip to content

Commit 651fbd4

Browse files
authored
Merge branch 'main' into update/munit-cats-effect-3-2.0.0
2 parents 03260e1 + 1381fd9 commit 651fbd4

File tree

9 files changed

+29
-21
lines changed

9 files changed

+29
-21
lines changed

.github/workflows/ci.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
matrix:
3030
os: [ubuntu-latest, macos-latest]
3131
scala: [2.12]
32-
java: [temurin@8, temurin@17]
32+
java: [temurin@8, temurin@21]
33+
exclude:
34+
- os: macos-latest
35+
java: temurin@8
3336
runs-on: ${{ matrix.os }}
3437
timeout-minutes: 60
3538
steps:
@@ -55,17 +58,17 @@ jobs:
5558
if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false'
5659
run: sbt +update
5760

58-
- name: Setup Java (temurin@17)
59-
id: setup-java-temurin-17
60-
if: matrix.java == 'temurin@17'
61+
- name: Setup Java (temurin@21)
62+
id: setup-java-temurin-21
63+
if: matrix.java == 'temurin@21'
6164
uses: actions/setup-java@v4
6265
with:
6366
distribution: temurin
64-
java-version: 17
67+
java-version: 21
6568
cache: sbt
6669

6770
- name: sbt update
68-
if: matrix.java == 'temurin@17' && steps.setup-java-temurin-17.outputs.cache-hit == 'false'
71+
if: matrix.java == 'temurin@21' && steps.setup-java-temurin-21.outputs.cache-hit == 'false'
6972
run: sbt +update
7073

7174
- name: Check that workflows are up to date

build.sbt

+8-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@ val MacOS = "macos-latest"
1717
ThisBuild / githubWorkflowOSes := Seq(PrimaryOS, MacOS)
1818

1919
val PrimaryJava = JavaSpec.temurin("8")
20-
val LTSJava = JavaSpec.temurin("17")
20+
val LTSJava = JavaSpec.temurin("21")
2121
ThisBuild / githubWorkflowJavaVersions := Seq(PrimaryJava, LTSJava)
2222

23+
// MacOS runners do not have temurin@8
24+
ThisBuild / githubWorkflowBuildMatrixExclusions := Seq(
25+
MatrixExclude(Map("os" -> MacOS, "java" -> JavaSpec.temurin("8").render))
26+
)
27+
2328
// This build is for this Giter8 template.
2429
// To test the template run `g8` or `g8Test` from the sbt session.
2530
// See http://www.foundweekends.org/giter8/testing.html#Using+the+Giter8Plugin for more details.
@@ -39,9 +44,9 @@ lazy val phantomDependencies = project
3944
libraryDependencies ++= Seq(
4045
"org.typelevel" %%% "cats-core" % "2.10.0",
4146
"org.typelevel" %%% "cats-effect" % "3.5.4",
42-
"org.scalameta" %%% "munit" % "0.7.29" % Test,
47+
"org.scalameta" %%% "munit" % "1.0.0" % Test,
4348
"org.typelevel" %%% "munit-cats-effect" % "2.0.0" % Test,
44-
"org.scala-lang" % "scala-library" % "2.13.13",
49+
"org.scala-lang" % "scala-library" % "2.13.14",
4550
"org.scala-lang" % "scala3-library_3" % "3.3.3"
4651
),
4752
)

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
let
1111
pkgs = import nixpkgs {
1212
inherit system;
13-
overlays = [ typelevel-nix.overlay ];
13+
overlays = [ typelevel-nix.overlays.default ];
1414
};
1515
in
1616
{

project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.0")
2-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.0")
3-
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.0")
1+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
2+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
3+
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1")
44
addSbtPlugin("org.foundweekends.giter8" %% "sbt-giter8" % "0.16.2")
55
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
66
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2")

src/main/g8/.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262

263263
- name: Publish site
264264
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
265-
uses: peaceiris/actions-gh-pages@v3.9.3
265+
uses: peaceiris/actions-gh-pages@v4.0.0
266266
with:
267267
github_token: ${{ secrets.GITHUB_TOKEN }}
268268
publish_dir: site/target/docs/site

src/main/g8/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
3030
libraryDependencies ++= Seq(
3131
"org.typelevel" %%% "cats-core" % "2.10.0",
3232
"org.typelevel" %%% "cats-effect" % "3.5.4",
33-
"org.scalameta" %%% "munit" % "0.7.29" % Test,
33+
"org.scalameta" %%% "munit" % "1.0.0" % Test,
3434
"org.typelevel" %%% "munit-cats-effect" % "2.0.0" % Test
3535
)
3636
)

src/main/g8/default.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ organization = com.example
44
package = $organization$.$name;format="norm,word"$
55
organization_name = Example
66

7-
scala_version = 2.13.12
8-
other_scala_version = 3.3.1
7+
scala_version = 2.13.14
8+
other_scala_version = 3.3.3
99
jdk_version = 8
1010

1111
github_username = valencik

src/main/g8/flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
let
1111
pkgs = import nixpkgs {
1212
inherit system;
13-
overlays = [ typelevel-nix.overlay ];
13+
overlays = [ typelevel-nix.overlays.default ];
1414
};
1515
in
1616
{

src/main/g8/project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.0")
2-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.0")
3-
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.0")
1+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
2+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
3+
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1")
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
55
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2")

0 commit comments

Comments
 (0)