Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-library to 2.12.19 #255

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6bc5045
Update scala-library to 2.12.19
Feb 27, 2024
df9c575
Regenerate GitHub Actions workflow
Feb 27, 2024
e8f7144
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Mar 5, 2024
23ca63f
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Mar 6, 2024
e909ec7
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Mar 18, 2024
08c14c5
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Mar 24, 2024
5ff0fa0
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Mar 28, 2024
afc2063
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] May 1, 2024
85860ae
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] May 3, 2024
2261d7f
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] May 16, 2024
e59d5e3
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] May 20, 2024
05876d3
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] May 28, 2024
fdce448
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] May 28, 2024
5acc9a2
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Jun 12, 2024
6e676ae
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Jun 23, 2024
0c70eaa
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Jul 4, 2024
11dc4a3
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Jul 27, 2024
b654081
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Aug 13, 2024
f9935a7
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Aug 20, 2024
6a147b6
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Aug 27, 2024
78bb779
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Sep 7, 2024
9e0e2e9
Merge branch 'main' into update/scala-library-2.12.19
mergify[bot] Sep 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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.9, 2.12.17]
scala: [2.13.9, 2.12.19]
java: [temurin@8, temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -111,12 +111,12 @@ jobs:
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (2.12.17)
- name: Inflate target directories (2.12.19)
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 @@ -19,7 +19,7 @@ inThisBuild(List(
url("https://dwolla.com")
),
),
crossScalaVersions := Seq("2.13.9", "2.12.17"),
crossScalaVersions := Seq("2.13.9", "2.12.19"),
scalaVersion := crossScalaVersions.value.head,
startYear := Option(2016),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.3" cross CrossVersion.full),
Expand Down