Skip to content

Commit

Permalink
Update scala-library to 2.13.12 (#147)
Browse files Browse the repository at this point in the history
* Update scala-library to 2.13.12

* Regenerate GitHub Actions workflow

Executed command: sbt githubWorkflowGenerate

* Revert commit(s) 8e20460, 6abeff3

* Update scala-library to 2.13.12

* Regenerate GitHub Actions workflow

Executed command: sbt githubWorkflowGenerate
  • Loading branch information
fgrutsch authored Sep 20, 2023
1 parent d57cd5d commit c3e24cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 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.13.11, 3.3.1]
scala: [2.13.12, 3.3.1]
java: [temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -64,11 +64,11 @@ jobs:
- if: matrix.scala == '3.3.1'
run: sbt ++${{ matrix.scala }} coverage test coverageReport coverageAggregate

- if: matrix.scala == '2.13.11'
- if: matrix.scala == '2.13.12'
run: sbt ++${{ matrix.scala }} codeVerify coverage test coverageReport coverageAggregate

- name: Upload coverage to Codecov
if: matrix.scala == '2.13.11'
if: matrix.scala == '2.13.12'
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
Expand Down Expand Up @@ -124,12 +124,12 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

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

- name: Inflate target directories (2.13.11)
- name: Inflate target directories (2.13.12)
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 @@ -3,7 +3,7 @@ import java.time.LocalDate
ThisBuild / scalafixDependencies += Dependencies.organizeImports
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / scalaVersion := crossScalaVersions.value.last
ThisBuild / crossScalaVersions := Seq("2.13.11", "3.3.1")
ThisBuild / crossScalaVersions := Seq("2.13.12", "3.3.1")

addCommandAlias("codeFmt", ";headerCreate;scalafmtAll;scalafmtSbt;scalafixAll")
addCommandAlias("codeVerify", ";scalafmtCheckAll;scalafmtSbtCheck;scalafixAll --check;headerCheck")
Expand Down

0 comments on commit c3e24cc

Please sign in to comment.