Skip to content

Commit

Permalink
Revert commit(s) 3124f78, c491c84
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Sep 29, 2022
1 parent 3124f78 commit 24af7a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.17, 2.13.8, 3.1.2]
scala: [2.12.16, 2.13.8, 3.1.2]
java: [adopt-hotspot@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: sbt ++${{ matrix.scala }} githubWorkflowCheck

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

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

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

- name: Inflate target directories (2.12.17)
- name: Inflate target directories (2.12.16)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val gitHubOwner = "fthomas"
val gitPubUrl = s"https://github.com/$gitHubOwner/$projectName.git"
val gitDevUrl = s"git@github.com:$gitHubOwner/$projectName.git"

val Scala_2_12 = "2.12.17"
val Scala_2_12 = "2.12.16"
val Scala_2_13 = "2.13.8"
val Scala_3 = "3.1.2"

Expand Down

0 comments on commit 24af7a9

Please sign in to comment.