Skip to content

Commit b583961

Browse files
committed
Update sbt-github-actions to 0.24.0
1 parent f9d3eaf commit b583961

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/ci.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,25 @@ jobs:
5454
- 2.13.14
5555
- 2.13.15
5656
- 2.13.16
57-
java: [temurin@8]
57+
java: [zulu@8]
5858
runs-on: ${{ matrix.os }}
5959
steps:
6060
- name: Checkout current branch (full)
6161
uses: actions/checkout@v4
6262
with:
6363
fetch-depth: 0
6464

65-
- name: Setup Java (temurin@8)
66-
if: matrix.java == 'temurin@8'
67-
uses: actions/setup-java@v3
65+
- name: Setup Java (zulu@8)
66+
if: matrix.java == 'zulu@8'
67+
uses: actions/setup-java@v4
6868
with:
69-
distribution: temurin
69+
distribution: zulu
7070
java-version: 8
7171
cache: sbt
7272

73+
- name: Setup sbt
74+
uses: sbt/setup-sbt@v1
75+
7376
- name: Check that workflows are up to date
7477
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
7578

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")
22
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10")
3-
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.19.0")
3+
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")

0 commit comments

Comments
 (0)