Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-async to 1.0.1 #5126

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This workflow will launch at 00:00 every Sunday
on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:

name: Launch Scala Steward

env:
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}

jobs:
scala-steward:
runs-on: ubuntu-latest
name: Launch Scala Steward
steps:
- name: Launch Scala Steward
uses: scala-steward-org/scala-steward-action@v2
with:
github-token: ${{ secrets.REPO_GITHUB_TOKEN }}
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}

// For our GitHub packages
resolvers += Resolver.githubPackages("orbeon")
ThisBuild / githubOwner := "orbeon"
githubOwner := "orbeon"
githubTokenSource := TokenSource.Environment("REPO_GITHUB_TOKEN") || TokenSource.Environment("GITHUB_TOKEN")

ThisBuild / evictionErrorLevel := Level.Info

Expand Down Expand Up @@ -47,7 +48,7 @@ val EnumeratumVersion = "1.6.1"
val EnumeratumCirceVersion = "1.6.1"
val ShapelessVersion = "2.3.4"
val ScalaXmlVersion = "2.0.0" // see https://github.com/orbeon/orbeon-forms/issues/4927
val ScalaAsyncVersion = "0.10.0" // "1.0.0" with `-Xasync` causes issues
val ScalaAsyncVersion = "1.0.1" // "1.0.0" with `-Xasync` causes issues
//val ScalaAsyncVersion = "1.0.1"
val Parboiled2Version = "2.2.1"
val AutowireVersion = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ addSbtPlugin ("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
addSbtPlugin ("com.typesafe.sbt" % "sbt-less" % "1.1.2")
addSbtPlugin ("com.typesafe.sbt" % "sbt-uglify" % "2.0.0")
//addSbtPlugin ("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
addSbtPlugin ("com.codecommit" % "sbt-github-packages" % "0.5.2")
addSbtPlugin ("com.codecommit" % "sbt-github-packages" % "0.5.3")
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
addSbtPlugin ("io.github.cquiroz" % "sbt-tzdb" % "0.3.2")
//addSbtPlugin ("io.github.cquiroz" % "sbt-locales" % "2.0.1")
Expand Down