From 6cdea39e3ff01efac1879e06468bbcaa23b48113 Mon Sep 17 00:00:00 2001 From: Jake Schwartz Date: Thu, 11 Apr 2024 15:06:42 -0400 Subject: [PATCH] Update release scripts --- .github/workflows/release.yml | 11 +++++++---- project/plugins.sbt | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c44f24e..626dcd9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,13 +4,16 @@ on: tags: ["*"] jobs: publish: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: olafurpg/setup-scala@v10 - - uses: olafurpg/setup-gpg@v3 + - uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 8 + cache: sbt - run: sbt test ci-release env: PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} diff --git a/project/plugins.sbt b/project/plugins.sbt index 39a0190..eef6dd1 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.2")