Skip to content

Commit

Permalink
Update scala-library to 2.13.12 (#154)
Browse files Browse the repository at this point in the history
* Update scala-library to 2.13.12

* Upgrade actions.

* Upgrade sbt.

* Clean plugins.

* Add ignores.

* Upgrade scala.
  • Loading branch information
zhongl committed Nov 28, 2023
1 parent 78eadd4 commit 17b3831
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -7,13 +7,13 @@ on:
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: olafurpg/setup-scala@v13
- uses: actions/checkout@v4
- uses: coursier/setup-action@v1
- name: branch-names
id: branch-name
uses: tj-actions/branch-names@v2.2
uses: tj-actions/branch-names@v7
- run: sbt coverage +test coverageReport
- run: sbt coverageAggregate coveralls
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sbt-release.yml
Expand Up @@ -7,10 +7,10 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v10
- uses: coursier/setup-action@v1
- uses: olafurpg/setup-gpg@v3
- run: sbt ci-release
env:
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,3 +1,7 @@
.idea
target/
.bsp/
.metals/
.vscode/
metals.sbt
.bloop/
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -2,14 +2,14 @@ import Dependencies._

inThisBuild(
Seq(
scalaVersion := "2.13.8",
scalaVersion := "2.13.12",
scalafmtOnCompile := true,
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"UTF-8"
),
crossScalaVersions := Seq(scalaVersion.value, "2.12.15"),
crossScalaVersions := Seq(scalaVersion.value, "2.12.18"),
organization := "com.github.zhongl",
homepage := Some(url("https://github.com/hanabix/akka-stream-oauth2")),
licenses := List(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version = 1.7.2
sbt.version = 1.9.7
9 changes: 0 additions & 9 deletions project/plugins.sbt
@@ -1,17 +1,8 @@
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")

addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.0")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 comments on commit 17b3831

Please sign in to comment.