From 16fc6091ce78c33812c042c0e5087861745ca245 Mon Sep 17 00:00:00 2001 From: Ondra Pelech Date: Mon, 17 Aug 2026 15:37:26 +0200 Subject: [PATCH] Use sbt-github-actions-logger in this build Add it to this project's own build (project/plugins.sbt) so its CI logs get GitHub Actions groups and annotations. It is intentionally NOT added to the bundled plugins in build.sbt, so consumers of sbt-decent-scala are not forced to depend on it. Co-Authored-By: Claude Opus 4.8 --- project/plugins.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7acbf5b..961876c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,6 +3,7 @@ val Dependencies = new { val missinglink = "0.2.11" val sbtBuildinfo = "0.13.1" val sbtCiRelease = "1.11.2" + val sbtGitHubActionsLogger = "1.1.0" val sbtMissinglink = "0.3.8" val sbtRewarn = "0.1.3" val sbtScalafmt = "2.5.6" @@ -13,6 +14,8 @@ val Dependencies = new { val missinglink = "com.spotify" % "missinglink-core" % Versions.missinglink val sbtBuildinfo = "com.eed3si9n" % "sbt-buildinfo" % Versions.sbtBuildinfo val sbtCiRelease = "com.github.sbt" % "sbt-ci-release" % Versions.sbtCiRelease + val sbtGitHubActionsLogger = + "com.github.sideeffffect" % "sbt-github-actions-logger" % Versions.sbtGitHubActionsLogger val sbtMissinglink = "ch.epfl.scala" % "sbt-missinglink" % Versions.sbtMissinglink val sbtRewarn = "com.timushev.sbt" % "sbt-rewarn" % Versions.sbtRewarn val sbtScalafmt = "org.scalameta" % "sbt-scalafmt" % Versions.sbtScalafmt @@ -23,6 +26,7 @@ val Dependencies = new { addSbtPlugin(Dependencies.sbtBuildinfo) addSbtPlugin(Dependencies.sbtCiRelease) +addSbtPlugin(Dependencies.sbtGitHubActionsLogger) addSbtPlugin(Dependencies.sbtMissinglink) addSbtPlugin(Dependencies.sbtRewarn) addSbtPlugin(Dependencies.sbtScalafmt)