Skip to content

Commit

Permalink
Merge branch 'master' into update/zio-2.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
juliano authored Nov 19, 2024
2 parents 44440ee + 03963f0 commit 461ec97
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].2
- name: Cache sbt
uses: actions/cache@v4
with:
Expand All @@ -29,7 +29,7 @@ jobs:
key: ${{ runner.os }}-${{matrix.scala}}-${{matrix.module}}-${{ hashFiles('**/build.sbt') }}

- name: Setup Java
uses: actions/setup-java@v4.3.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: '17'
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
name: Build ${{matrix.scala_short_dot}} - ${{matrix.module}}

steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].2
- name: Cache sbt
uses: actions/cache@v4
with:
Expand All @@ -87,7 +87,7 @@ jobs:
key: ${{ runner.os }}-${{matrix.scala}}-${{matrix.module}}-${{ hashFiles('**/build.sbt') }}

- name: Setup Java
uses: actions/setup-java@v4.3.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: '17'
Expand All @@ -108,9 +108,9 @@ jobs:
CI_RELEASE: publishSigned # By default, sbt-ci-release uses the `+publishSigned` which is publishing for all the Scala versions configured, which is not what we want
CI_SNAPSHOT_RELEASE: publish # By default, sbt-ci-release uses the `+publish` which is publishing for all the Scala versions configured, which is not what we want
steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].2
- name: Setup Java
uses: actions/setup-java@v4.3.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: '11'
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 @@ -13,7 +13,7 @@ jobs:
name: Scala Steward
steps:
- name: Scala Steward
uses: scala-steward-org/scala-steward-action@v2.69.0
uses: scala-steward-org/scala-steward-action@v2.71.0
with:
github-app-id: ${{ secrets.SCALA_STEWARD_GITHUB_APP_ID }}
github-app-installation-id: ${{ secrets.SCALA_STEWARD_GITHUB_APP_INSTALLATION_ID }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Git Checkout
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
fetch-depth: '0'
- name: Setup Scala
uses: actions/setup-java@v4.3.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: 17
Expand All @@ -39,11 +39,11 @@ jobs:
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
steps:
- name: Git Checkout
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
fetch-depth: '0'
- name: Setup Scala
uses: actions/setup-java@v4.3.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: 17
Expand All @@ -63,12 +63,12 @@ jobs:
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
steps:
- name: Git Checkout
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
ref: ${{ github.head_ref }}
fetch-depth: '0'
- name: Setup Scala
uses: actions/setup-java@v4.3.0
uses: actions/setup-java@v4.5.0
with:
distribution: temurin
java-version: 17
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ lazy val `quill-test-kit` =

lazy val jdbcTestingLibraries = Seq(
libraryDependencies ++= Seq(
"com.zaxxer" % "HikariCP" % "6.0.0" exclude ("org.slf4j", "*"),
"com.zaxxer" % "HikariCP" % "6.2.1" exclude ("org.slf4j", "*"),
"com.mysql" % "mysql-connector-j" % "9.0.0" % Test,
"com.h2database" % "h2" % "2.3.232" % Test,
"org.postgresql" % "postgresql" % "42.7.4" % Test,
Expand Down Expand Up @@ -598,7 +598,7 @@ def excludePaths(paths: Seq[String]) = {
}

val scala_v_12 = "2.12.20"
val scala_v_13 = "2.13.14"
val scala_v_13 = "2.13.15"
val scala_v_30 = "3.3.4"

val scalaCollectionCompatVersion = "2.12.0"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releas
addDependencyTreePlugin

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")
addSbtPlugin("com.etsy" % "sbt-compile-quick-plugin" % "1.4.0")
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.3.10")
Expand Down

0 comments on commit 461ec97

Please sign in to comment.