Skip to content

Commit

Permalink
Merge pull request #3 from permutive-engineering/update/all
Browse files Browse the repository at this point in the history
Dependency Updates
  • Loading branch information
github-actions[bot] authored Jan 9, 2024
2 parents 2e40099 + 5860c7e commit bf0df24
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: ${{ github.head_ref }}
fetch-depth: 0

- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

documentation:
needs: [release]
name: Updates documentation after latest release
name: Updates documentation and version policy after latest release
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -82,3 +82,14 @@ jobs:
with:
message: Run `sbt ci-docs` [skip ci]
branch: main

- name: Reset `versionPolicyIntention`
run: sed -i -r 's/Compatibility\.(None|BinaryCompatible)/Compatibility.BinaryAndSourceCompatible/g' build.sbt

- name: Commit `versionPolicyIntention` reset
uses: alejandrohdezma/actions/commit-and-push@v1
with:
message: Reset `versionPolicyIntention` [skip ci]
branch: main


6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / crossScalaVersions := Seq("2.13.12", "3.3.0")
ThisBuild / crossScalaVersions := Seq("2.13.12", "3.3.1")
ThisBuild / organization := "com.permutive"
ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible

Expand All @@ -15,8 +15,8 @@ lazy val `gcp-auth` = module
.settings(libraryDependencies += "com.auth0" % "java-jwt" % "4.4.0")
.settings(libraryDependencies += "com.github.jwt-scala" %% "jwt-circe" % "9.4.5")
.settings(libraryDependencies += "com.permutive" %% "refreshable" % "1.1.0")
.settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.24")
.settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.24")
.settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.25")
.settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.25")
.settings(libraryDependencies += "com.alejandrohdezma" %% "http4s-munit" % "0.15.1" % Test)

lazy val `gcp-auth-pureconfig` = module
Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.13.6")
addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.14.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.1")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.11")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.11")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.12")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.12")
addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.11.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.1")
Expand All @@ -12,5 +12,5 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.0")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.1")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

0 comments on commit bf0df24

Please sign in to comment.