Skip to content

Commit

Permalink
Merge pull request #471 from scala-steward/update/sbt-typelevel-0.4.20
Browse files Browse the repository at this point in the history
Update sbt-typelevel to 0.4.20
  • Loading branch information
satabin authored Apr 28, 2023
2 parents 21405fa + 73750a1 commit bc13920
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,3 +258,37 @@ jobs:
- name: Publish
run: sbt '++ ${{ matrix.scala }}' tlCiRelease

validate-steward:
name: Validate Steward Config
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.6]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v3

- name: Download Java (temurin@17)
id: download-java-temurin-17
if: matrix.java == 'temurin@17'
uses: typelevel/download-java@v2
with:
distribution: temurin
java-version: 17

- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
with:
distribution: jdkfile
java-version: 17
jdkFile: ${{ steps.download-java-temurin-17.outputs.jdkFile }}

- uses: coursier/setup-action@v1
with:
apps: scala-steward

- run: scala-steward validate-repo-config .scala-steward.conf
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ThisBuild / libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
)

addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.19")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.20")

addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")

Expand Down

0 comments on commit bc13920

Please sign in to comment.