Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Bump Scala #433

Merged
merged 2 commits into from
Nov 9, 2021
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala: [2.13.5, 2.12.13]
scala: [2.13.7, 2.12.15]
nodejs: [16.3.0, 14.16.0, 12.21.0, 10.24.0]
steps:
- uses: actions/[email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import scala.scalajs.js.|
@js.native
// TODO: Can be exposed as newable class when Node.js v10 dropped
sealed trait KeyObject extends js.Object {
def export(options: KeyObjectExportOptions): Buffer | String = js.native
def export(): Buffer = js.native
def `export`(options: KeyObjectExportOptions): Buffer | String = js.native
def `export`(): Buffer = js.native

/** For asymmetric keys, this property represents the type of the key. This property is undefined for unrecognized
* KeyObject types and symmetric keys.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val scala213 = "2.13.6"
lazy val scala213 = "2.13.7"
lazy val scala212 = "2.12.15"
ThisBuild / organization := "net.exoego"
ThisBuild / crossScalaVersions := Seq(scala213, scala212)
Expand Down