Skip to content

Commit 598b6ba

Browse files
committed
Update GitHub Actions
1 parent 9dda288 commit 598b6ba

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
java: [ '8', '11', '17' ]
10+
java: [ '8', '11', '17', '21' ]
1111
steps:
1212
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1313
with:
@@ -18,8 +18,7 @@ jobs:
1818
with:
1919
distribution: 'temurin'
2020
java-version: ${{ matrix.java }}
21-
- name: Coursier cache
22-
uses: coursier/cache-action@v6
21+
cache: 'sbt'
2322
- name: sbt ci ${{ github.ref }}
2423
run: ./sbt ci
2524

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1212
with:
1313
fetch-depth: 0
14-
- uses: olafurpg/setup-scala@v14
14+
- uses: actions/setup-java@v4.0.0
1515
with:
16-
java-version: adopt@1.8
17-
- name: Coursier cache
18-
uses: coursier/cache-action@v6
16+
distribution: 'temurin'
17+
java-version: 8
18+
cache: 'sbt'
1919
- name: sbt ci-release ${{ github.ref }}
2020
run: ./sbt ci-release
2121
env:

0 commit comments

Comments
 (0)