From 16581504598108c2c1ea9e04560d3f920e6350f5 Mon Sep 17 00:00:00 2001 From: "banno-diy-steward[bot]" <407453+banno-diy-steward[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 08:26:28 +0000 Subject: [PATCH 1/2] Update sbt-typelevel, sbt-typelevel-site to 0.6.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 5731f88..fd03ec0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val typelevelV = "0.6.1" +val typelevelV = "0.6.2" addSbtPlugin("org.typelevel" % "sbt-typelevel" % typelevelV) addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % typelevelV) From 359d5812fb0f2853ff39fc934801f25c6310d7bd Mon Sep 17 00:00:00 2001 From: Sam Pillsworth Date: Thu, 16 Nov 2023 14:55:40 -0500 Subject: [PATCH 2/2] githubWorkflowGenerate --- .github/workflows/ci.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a30b54..da02674 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -205,7 +205,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - java: [temurin@8] + java: [temurin@11] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -226,6 +226,19 @@ jobs: if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' run: sbt +update + - name: Setup Java (temurin@11) + id: setup-java-temurin-11 + if: matrix.java == 'temurin@11' + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 11 + cache: sbt + + - name: sbt update + if: matrix.java == 'temurin@11' && steps.setup-java-temurin-11.outputs.cache-hit == 'false' + run: sbt +update + - name: Generate site run: sbt docs/tlSite