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 scalajs-jquery to 1.0.0 #5108

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 All @@ -28,7 +29,7 @@ val SaxonJsVersion = "10.0.0.64-SNAPSHOT"
val XercesVersion = "2.11.0.11-SNAPSHOT"
val SaxVersion = "2.0.2.8-SNAPSHOT"
val ScalaJsDomVersion = "1.2.0"
val ScalaJsJQueryVersion = "0.9.6"
val ScalaJsJQueryVersion = "1.0.0"
val ScribeVersion = "2.7.13"
val PerfolationVersion = "1.1.7"
val ScalaJsStubsVersion = "1.0.0" // can be different from Scala.js version
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