Skip to content

Commit ef13712

Browse files
committed
Update version of Scala, Scalatest, SBT, JDK and Github Actions
1 parent dcb92a6 commit ef13712

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-java@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-java@v4
1515
with:
16-
java-version: '17'
16+
java-version: '21'
1717
distribution: 'corretto'
1818
cache: 'sbt'
1919
- run: sbt test

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "Advent of Code"
22

3-
scalaVersion := "3.3.0"
3+
scalaVersion := "3.3.3"
44

55
scalacOptions ++= Seq(
66
"-deprecation",
@@ -10,5 +10,5 @@ scalacOptions ++= Seq(
1010
"-unchecked")
1111

1212
libraryDependencies ++= Seq(
13-
"org.scalatest" %% "scalatest" % "3.2.16" % Test
13+
"org.scalatest" %% "scalatest" % "3.2.19" % Test
1414
)

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.3
1+
sbt.version=1.9.9

0 commit comments

Comments
 (0)