Skip to content

Commit

Permalink
Update scalas
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Sep 4, 2021
1 parent a5c8a5f commit 136b1b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.3, 2.12.12]
scala: [2.13.6, 2.12.14]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.3]
scala: [2.13.6]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -113,22 +113,22 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

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

- name: Inflate target directories (2.13.3)
- name: Inflate target directories (2.13.6)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.12)
- name: Download target directories (2.12.14)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.12.12-${{ matrix.java }}
name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }}

- name: Inflate target directories (2.12.12)
- name: Inflate target directories (2.12.14)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ lazy val mavenSettings = Seq(
}
)

val Scala213 = "2.13.3"
val Scala212 = "2.12.12"
val Scala213 = "2.13.6"
val Scala212 = "2.12.14"
val Jdk11 = "[email protected]"

ThisBuild / scalaVersion := Scala213
Expand Down

0 comments on commit 136b1b6

Please sign in to comment.