Skip to content

Commit 24af7a9

Browse files
committed
Revert commit(s) 3124f78, c491c84
1 parent 3124f78 commit 24af7a9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.12.17, 2.13.8, 3.1.2]
26+
scala: [2.12.16, 2.13.8, 3.1.2]
2727
java: [adopt-hotspot@8]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -55,7 +55,7 @@ jobs:
5555
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
5656

5757
- name: Build project (Scala 2)
58-
if: matrix.scala == '2.12.17' || matrix.scala == '2.13.8'
58+
if: matrix.scala == '2.12.16' || matrix.scala == '2.13.8'
5959
run: sbt ++${{ matrix.scala }} validateJVM validateJS validateNative
6060

6161
- name: Build project (Scala 3)
@@ -109,12 +109,12 @@ jobs:
109109
~/Library/Caches/Coursier/v1
110110
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
111111

112-
- name: Download target directories (2.12.17)
112+
- name: Download target directories (2.12.16)
113113
uses: actions/download-artifact@v2
114114
with:
115-
name: target-${{ matrix.os }}-2.12.17-${{ matrix.java }}
115+
name: target-${{ matrix.os }}-2.12.16-${{ matrix.java }}
116116

117-
- name: Inflate target directories (2.12.17)
117+
- name: Inflate target directories (2.12.16)
118118
run: |
119119
tar xf targets.tar
120120
rm targets.tar

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ val gitHubOwner = "fthomas"
1111
val gitPubUrl = s"https://github.com/$gitHubOwner/$projectName.git"
1212
val gitDevUrl = s"git@github.com:$gitHubOwner/$projectName.git"
1313

14-
val Scala_2_12 = "2.12.17"
14+
val Scala_2_12 = "2.12.16"
1515
val Scala_2_13 = "2.13.8"
1616
val Scala_3 = "3.1.2"
1717

0 commit comments

Comments
 (0)