Skip to content

Commit b92c8d6

Browse files
Merge branch 'main' into fix-github-actions
2 parents 49ea8df + e3c7106 commit b92c8d6

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-22.04, macos-13]
14-
java: [ '17' ]
14+
java: [ '21' ]
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- name: Checkout current branch (full)
@@ -22,5 +22,9 @@ jobs:
2222
distribution: 'adopt'
2323
java-version: ${{ matrix.java }}
2424
cache: 'sbt'
25+
- name: Install common dependencies
26+
shell: bash
27+
if: ${{ startsWith(matrix.os, 'macos') }}
28+
run: brew install sbt
2529
- name: Run tests (${{ matrix.os }}) Java ${{ matrix.java }}
2630
run: sbt g8Test

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.10.6
1+
sbt.version = 1.11.3

src/main/g8/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
scalaVersion := "3.3.3" // A Long Term Support version.
1+
scalaVersion := "3.3.6" // A Long Term Support version.
22

33
enablePlugins(ScalaNativePlugin)
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.10.6
1+
sbt.version = 1.11.3

src/main/g8/project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.1")
1+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.8")

0 commit comments

Comments
 (0)