This is an automated email from the ASF dual-hosted git repository.
olabusayoT pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new a04979670 Revert scalaVersion back to 3.3.7
a04979670 is described below
commit a04979670591aa97002d87985758c927d5f3c51b
Author: olabusayoT <[email protected]>
AuthorDate: Tue Jun 23 14:15:30 2026 -0400
Revert scalaVersion back to 3.3.7
---
.github/workflows/main.yml | 6 +++---
build.sbt | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c576bced9..47c904a8f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -41,7 +41,7 @@ jobs:
matrix:
java_distribution: [ temurin ]
java_version: [ 17, 21, 25 ]
- scala_version: [ 3.3.8 ]
+ scala_version: [ 3.3.7 ]
os: [ ubuntu-22.04, windows-2022, macos-14 ]
exclude:
# only run macos on java 17
@@ -89,7 +89,7 @@ jobs:
SONARSCAN: ${{
matrix.os == 'ubuntu-22.04' &&
matrix.java_version == '17' &&
- matrix.scala_version == '3.3.8' &&
+ matrix.scala_version == '3.3.7' &&
github.event_name == 'push' &&
github.repository == 'apache/daffodil' &&
github.ref == 'refs/heads/main'
@@ -246,7 +246,7 @@ jobs:
matrix:
java_distribution: [ temurin ]
java_version: [ 17 ]
- scala_version: [ 3.3.8 ]
+ scala_version: [ 3.3.7 ]
os: [ ubuntu-22.04 ]
runs-on: ${{ matrix.os }}
env:
diff --git a/build.sbt b/build.sbt
index c2f4aaed9..b9f980174 100644
--- a/build.sbt
+++ b/build.sbt
@@ -181,8 +181,8 @@ val minSupportedJavaVersion: String = "17"
lazy val commonSettings = Seq(
organization := "org.apache.daffodil",
version := IO.read((ThisBuild / baseDirectory).value / "VERSION").trim,
- scalaVersion := "3.3.8",
- crossScalaVersions := Seq("3.3.8"),
+ scalaVersion := "3.3.7",
+ crossScalaVersions := Seq("3.3.7"),
scalacOptions ++= buildScalacOptions(scalaVersion.value),
Test / scalacOptions ++= buildTestScalacOptions(scalaVersion.value),
Compile / compile / javacOptions ++= buildJavacOptions(),