Skip to content

Commit 2a32e33

Browse files
committed
Fix Scala version in workflows
1 parent 9463a02 commit 2a32e33

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest]
31-
scala: [2.12.17, 2.13.8, 3.2.0]
31+
scala: [2.12.17, 2.13.9, 3.2.0]
3232
java: [temurin@11]
3333
project: [rootJS, rootJVM, rootNative]
3434
runs-on: ${{ matrix.os }}
@@ -114,7 +114,7 @@ jobs:
114114
strategy:
115115
matrix:
116116
os: [ubuntu-latest]
117-
scala: [2.13.8]
117+
scala: [2.13.9]
118118
java: [temurin@11]
119119
runs-on: ${{ matrix.os }}
120120
steps:
@@ -181,32 +181,32 @@ jobs:
181181
tar xf targets.tar
182182
rm targets.tar
183183
184-
- name: Download target directories (2.13.8, rootJS)
184+
- name: Download target directories (2.13.9, rootJS)
185185
uses: actions/download-artifact@v2
186186
with:
187-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJS
187+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootJS
188188

189-
- name: Inflate target directories (2.13.8, rootJS)
189+
- name: Inflate target directories (2.13.9, rootJS)
190190
run: |
191191
tar xf targets.tar
192192
rm targets.tar
193193
194-
- name: Download target directories (2.13.8, rootJVM)
194+
- name: Download target directories (2.13.9, rootJVM)
195195
uses: actions/download-artifact@v2
196196
with:
197-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJVM
197+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootJVM
198198

199-
- name: Inflate target directories (2.13.8, rootJVM)
199+
- name: Inflate target directories (2.13.9, rootJVM)
200200
run: |
201201
tar xf targets.tar
202202
rm targets.tar
203203
204-
- name: Download target directories (2.13.8, rootNative)
204+
- name: Download target directories (2.13.9, rootNative)
205205
uses: actions/download-artifact@v2
206206
with:
207-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootNative
207+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootNative
208208

209-
- name: Inflate target directories (2.13.8, rootNative)
209+
- name: Inflate target directories (2.13.9, rootNative)
210210
run: |
211211
tar xf targets.tar
212212
rm targets.tar

0 commit comments

Comments
 (0)