From a565ad057dc1abfc959f5e45999a010b2f1c1f97 Mon Sep 17 00:00:00 2001 From: Hossein Naderi Date: Fri, 11 Oct 2024 00:58:31 +0000 Subject: [PATCH 1/3] Update sbt-typelevel, sbt-typelevel-site to 0.7.4 --- project/plugins.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 073aa43..314f6c2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.3") -addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.3") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.4") +addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.4") From ff6697b2f2ab8851a30e2e9b26b8063bb1e1480b Mon Sep 17 00:00:00 2001 From: Hossein Naderi Date: Fri, 13 Dec 2024 11:12:05 +0330 Subject: [PATCH 2/3] Generated github workflow --- .github/workflows/ci.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca3625b..426d4d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,8 +34,7 @@ jobs: timeout-minutes: 60 steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 @@ -99,8 +98,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 @@ -164,8 +162,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 @@ -236,8 +233,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install sbt - if: contains(runner.os, 'macos') - run: brew install sbt + uses: sbt/setup-sbt@v1 - name: Checkout current branch (full) uses: actions/checkout@v4 From 9d252ccd301ff8a7b7e4c68f2c49289fc2e747b1 Mon Sep 17 00:00:00 2001 From: Hossein Naderi Date: Fri, 13 Dec 2024 11:13:10 +0330 Subject: [PATCH 3/3] Fixed deprecated warning --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f9cd153..659e6d2 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ ThisBuild / developers := List( val scala212 = "2.12.20" -ThisBuild / tlSonatypeUseLegacyHost := false +ThisBuild / sonatypeCredentialHost := xerial.sbt.Sonatype.sonatypeLegacy ThisBuild / tlSitePublishBranch := Some("main") ThisBuild / scalaVersion := scala212 ThisBuild / githubWorkflowBuildSbtStepPreamble := Nil