Skip to content

Commit 5dbac7e

Browse files
authored
Merge pull request #311 from typelevel/update/sbt-github-actions-0.24.0
Update sbt-github-actions to 0.24.0
2 parents 7653af4 + 3ddca03 commit 5dbac7e

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/ci.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,25 @@ jobs:
2323
matrix:
2424
os: [ubuntu-latest]
2525
scala: [2.12.17, 2.13.10, 3.3.3]
26-
java: [temurin@8]
26+
java: [zulu@8]
2727
runs-on: ${{ matrix.os }}
2828
steps:
2929
- name: Checkout current branch (full)
3030
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333

34-
- name: Setup Java (temurin@8)
35-
if: matrix.java == 'temurin@8'
34+
- name: Setup Java (zulu@8)
35+
if: matrix.java == 'zulu@8'
3636
uses: actions/setup-java@v4
3737
with:
38-
distribution: temurin
38+
distribution: zulu
3939
java-version: 8
4040
cache: sbt
4141

42+
- name: Setup sbt
43+
uses: sbt/setup-sbt@v1
44+
4245
- name: Check that workflows are up to date
4346
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
4447

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4")
2-
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.23.0")
2+
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")
33
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
44
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
55
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")

0 commit comments

Comments
 (0)