Skip to content

Commit 68e4a19

Browse files
committed
Fix CI
1 parent 5c974fa commit 68e4a19

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,15 @@ jobs:
2424
test-sbt:
2525
strategy:
2626
matrix:
27-
os: [ubuntu-latest, windows-latest, macOS-latest]
28-
jvm: ['adopt:1.8', 'adopt:1.11', 'temurin:1.17']
27+
include:
28+
- os: ubuntu-latest
29+
jvm: 'adoptium:1.8.0-412'
30+
- os: window-latest
31+
jvm: 'adoptium:1.11.0.23'
32+
- os: macOS-latest
33+
jvm: 'adoptium:1.17'
34+
- os: ubuntu-latest
35+
jvm: 'adoptium:1.21'
2936
fail-fast: false
3037
name: Test sbt plugin on ${{ matrix.os }} - ${{ matrix.jvm }}
3138
runs-on: ${{ matrix.os }}
@@ -38,7 +45,7 @@ jobs:
3845
GITHUB_TOKEN: ${{ github.token }}
3946
steps:
4047
- uses: actions/checkout@v3
41-
- uses: coursier/setup-action@v1.2.0-M3
48+
- uses: coursier/setup-action@v1.3.5
4249
with:
4350
jvm: ${{ matrix.jvm }}
4451
apps: sbt
@@ -59,6 +66,9 @@ jobs:
5966
contents: write
6067
steps:
6168
- uses: actions/checkout@v3
69+
- uses: coursier/setup-action@v1.3.5
70+
with:
71+
apps: sbt
6272
- run: sbt publishLocal
6373
working-directory: sbt-plugin
6474
- run: npm version

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: coursier/setup-action@v1.2.0-M3
12+
- uses: coursier/setup-action@v1.3.5
1313
with:
1414
apps: sbt
1515
jvm: 'adopt:1.8'

0 commit comments

Comments
 (0)