Skip to content

Commit

Permalink
Fix Scala versions for zerowaste compatibility (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
sideeffffect authored Oct 14, 2024
1 parent 05ee1a0 commit fc468df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release
on:
push:
branches: [ master ]
release:
types: [ published ]
jobs:
Expand All @@ -16,8 +18,8 @@ jobs:
distribution: 'temurin'
java-version: '8'
cache: 'sbt'
- name: sbt ci-release ${{ github.ref }}
run: ./sbt ci-release
- name: sbt ci-release-cont ${{ github.ref }}
run: ./sbt ci-release-cont
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt.Defaults.sbtPluginExtra

Global / onChangedBuildSource := ReloadOnSourceChanges
ThisBuild / turbo := true
ThisBuild / scalaVersion := "2.12.18" // scala-steward:off
ThisBuild / scalaVersion := "2.12.19" // scala-steward:off

lazy val sbtDecentScala = project
.in(file("."))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ object DecentScalaPlugin extends AutoPlugin {

trait DecentScala {
def decentScalaVersion3 = "3.3.4"
def decentScalaVersion213 = "2.13.15"
def decentScalaVersion212 = "2.12.20" // scala-steward:off
def decentScalaVersion213 = "2.13.14"
def decentScalaVersion212 = "2.12.19" // scala-steward:off
def decentScalaVersion211 = "2.11.12"
def decentScalaSettings: List[Def.Setting[_]] =
List(
Expand Down

0 comments on commit fc468df

Please sign in to comment.