Skip to content

Commit

Permalink
Update sbt-typelevel to 0.5.2 (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones authored Sep 15, 2023
1 parent 681f5f2 commit dd6c348
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -71,15 +71,15 @@ jobs:
run: sbt githubWorkflowCheck

- name: Build project
if: matrix.scala == '2.13.11' && matrix.java == 'corretto@11'
if: matrix.scala == '2.13.12' && matrix.java == 'corretto@11'
run: sbt '++ ${{ matrix.scala }}' coverage test coverageAggregate

- name: Upload coverage report
if: matrix.scala == '2.13.11' && matrix.java == 'corretto@11'
if: matrix.scala == '2.13.12' && matrix.java == 'corretto@11'
run: 'bash <(curl -s https://codecov.io/bash)'

- name: Build project
if: '!(matrix.scala == ''2.13.11'' && matrix.java == ''corretto@11'')'
if: '!(matrix.scala == ''2.13.12'' && matrix.java == ''corretto@11'')'
run: sbt '++ ${{ matrix.scala }}' test

- name: Make target directories
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java (temurin@11)
id: setup-java-temurin-11
Expand All @@ -258,12 +258,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.11]
scala: [2.13.12]
java: [corretto@11]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ ThisBuild / developers := List(

// scala versions
val scala3 = "3.3.0"
val scala213 = "2.13.11"
val scala213 = "2.13.12"
val scala212 = "2.12.18"
val defaultScala = scala213

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.5.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.5.2")
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4")

0 comments on commit dd6c348

Please sign in to comment.