Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Cache Java/SBT
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
Expand All @@ -43,7 +43,7 @@ jobs:
key: setup-java-${{ matrix.java-version }}-${{ runner.os }}-${{ runner.arch }}-sbt-${{ matrix.scala-version }}-${{ hashFiles('build.sbt') }}

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
uses: actions/setup-java@v6
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- '3.x'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Cache Java/SBT
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
Expand All @@ -96,7 +96,7 @@ jobs:
key: setup-java-${{ matrix.java-version }}-${{ runner.os }}-${{ runner.arch }}-sbt-${{ matrix.scala-version }}-${{ hashFiles('build.sbt') }}

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
uses: actions/setup-java@v6
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- '3.x'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Cache Java/SBT
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
Expand All @@ -155,7 +155,7 @@ jobs:
key: setup-java-${{ matrix.java-version }}-${{ runner.os }}-${{ runner.arch }}-sbt-${{ matrix.scala-version }}-${{ hashFiles('build.sbt') }}

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
uses: actions/setup-java@v6
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
Expand Down Expand Up @@ -208,10 +208,10 @@ jobs:
needs-json: ${{ toJSON(needs) }}

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
uses: actions/setup-java@v6
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || vars.RUN_SCALA_STEWARD
steps:
- name: Scala Steward
uses: scala-steward-org/scala-steward-action@v2.92.0
uses: scala-steward-org/scala-steward-action@v2.96.0
with:
author-email: jenkins@garnercorp.com
author-name: GarnerUser
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ inThisBuild(
// Dependencies (intentionally spaced to avoid merge conflicts from GitHub auto-bump bots)
val ScalacticVersion = "3.2.20"

val ScalaCheckVersion = "1.19.0"
val ScalaCheckVersion = "1.20.0"

val ScalaCheckPlusVersion = "3.2.20.0"

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.12.15
sbt.version = 1.13.0
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.6.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.4")

// Deployment
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.2")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ThisBuild / version := "2.0.5"
ThisBuild / version := "2.0.6"
ThisBuild / versionScheme := Some("semver-spec")
Loading