Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency Updates #537

Merged
merged 5 commits into from
Jan 15, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
uses: coursier/cache-action@142d2738bd29f0eb9d44610828acb3a19809feab # v6.4.6

- name: Run Coursier Setup Action
uses: coursier/setup-action@62c1c28a0e03df3de0680172df8b829bd80d07a0 # v1.3.7
uses: coursier/setup-action@039f736548afa5411c1382f40a5bd9c2d30e0383 # v1.3.9
with:
jvm: liberica:${{ matrix.jdk }}
apps: sbt
Expand Down
24 changes: 14 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,14 @@ jobs:
if: github.event_name == 'push'
uses: alejandrohdezma/actions/check-semver-tag@v1

- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
- name: Run Coursier Cache Action
uses: coursier/cache-action@142d2738bd29f0eb9d44610828acb3a19809feab # v6.4.6

- name: Run Coursier Setup Action
uses: coursier/setup-action@62c1c28a0e03df3de0680172df8b829bd80d07a0 # v1.3.7
with:
distribution: "liberica"
java-version: "11"
cache: "sbt"
jvm: liberica:17
apps: sbt

- name: Run `sbt ci-publish`
run: sbt ci-publish
Expand All @@ -65,11 +68,14 @@ jobs:
ref: main
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
- name: Run Coursier Cache Action
uses: coursier/cache-action@142d2738bd29f0eb9d44610828acb3a19809feab # v6.4.6

- name: Run Coursier Setup Action
uses: coursier/setup-action@62c1c28a0e03df3de0680172df8b829bd80d07a0 # v1.3.7
with:
distribution: "liberica"
java-version: "17"
cache: "sbt"
jvm: liberica:17
apps: sbt

- name: Run `sbt ci-docs`
run: sbt ci-docs
Expand All @@ -91,5 +97,3 @@ jobs:
with:
message: Reset `versionPolicyIntention` [skip ci]
branch: main


2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lazy val `sbt-github` = module
.enablePlugins(SbtPlugin)
.settings(scriptedLaunchOpts += s"-Dplugin.version=${version.value}")
.settings(libraryDependencies += "org.typelevel" %% "jawn-parser" % "1.6.0")
.settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.3" % Test)
.settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.4" % Test)
.settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.30" % Test)
.settings(libraryDependencies += "org.http4s" %% "http4s-blaze-server" % "0.23.17" % Test)

Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")
addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.16.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.17.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2")
addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.2")
addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.1")
addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.1")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.3")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
Loading