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 scala3-library, ... to 3.1.2 #1086

Merged
merged 22 commits into from
Jun 23, 2022
Merged
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
d0350f4
Update scala3-library, ... to 3.1.2
scala-steward Apr 12, 2022
8a736aa
Regenerate workflow with sbt-github-actions
scala-steward Apr 12, 2022
ff2fa23
Revert commit(s) 8a736aa3, d0350f42
scala-steward Apr 18, 2022
7810ed5
Merge branch 'master' into update/scala3-library-3.1.2
scala-steward Apr 18, 2022
88befdb
Update scala3-library, ... to 3.1.2
scala-steward Apr 18, 2022
cef8b56
Regenerate workflow with sbt-github-actions
scala-steward Apr 18, 2022
594c358
Revert commit(s) cef8b562, 88befdb0
scala-steward May 10, 2022
fee5916
Merge branch 'master' into update/scala3-library-3.1.2
scala-steward May 10, 2022
71c8c69
Update scala3-library, ... to 3.1.2
scala-steward May 10, 2022
1dbc40d
Regenerate workflow with sbt-github-actions
scala-steward May 10, 2022
2b1dace
Revert commit(s) 1dbc40d1, 71c8c69b
scala-steward May 14, 2022
dea235c
Merge branch 'master' into update/scala3-library-3.1.2
scala-steward May 14, 2022
2999d73
Update scala3-library, ... to 3.1.2
scala-steward May 14, 2022
dad3603
Regenerate workflow with sbt-github-actions
scala-steward May 14, 2022
7766e5c
Revert commit(s) dad36035, 2999d73d
scala-steward Jun 4, 2022
1e19082
Update scala3-library, ... to 3.1.2
scala-steward Jun 4, 2022
327b716
Regenerate workflow with sbt-github-actions
scala-steward Jun 4, 2022
a99d6c6
Revert commit(s) 327b716f, 1e190825, 7766e5c9, dad36035, 2999d73d
scala-steward Jun 4, 2022
d4e824c
Merge branch 'master' into update/scala3-library-3.1.2
scala-steward Jun 4, 2022
1823ae5
Update scala3-library, ... to 3.1.2
scala-steward Jun 4, 2022
f79b5ad
Regenerate workflow with sbt-github-actions
scala-steward Jun 4, 2022
9b40053
Update .mergify.yml
fthomas Jun 23, 2022
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
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.15, 2.13.8, 3.1.1]
scala: [2.12.15, 2.13.8, 3.1.2]
java: [adopt-hotspot@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
run: sbt ++${{ matrix.scala }} validateJVM validateJS

- name: Build project (Scala 3)
if: matrix.scala == '3.1.1'
if: matrix.scala == '3.1.2'
run: sbt ++${{ matrix.scala }} validateJVM30 validateJS30

- name: Codecov
Expand Down Expand Up @@ -129,12 +129,12 @@ jobs:
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (3.1.1)
- name: Inflate target directories (3.1.2)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pull_request_rules:
- author=scala-steward
- status-success=Build and Test (ubuntu-latest, 2.12.15, adopt-hotspot@8)
- status-success=Build and Test (ubuntu-latest, 2.13.8, adopt-hotspot@8)
- status-success=Build and Test (ubuntu-latest, 3.1.1, adopt-hotspot@8)
- status-success=Build and Test (ubuntu-latest, 3.1.2, adopt-hotspot@8)
- body~=labels:.*semver-spec-patch
actions:
merge:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ val gitDevUrl = s"git@github.com:$gitHubOwner/$projectName.git"

val Scala_2_12 = "2.12.15"
val Scala_2_13 = "2.13.8"
val Scala_3 = "3.1.1"
val Scala_3 = "3.1.2"

val catsVersion = "2.7.0"
val jsonpathVersion = "2.7.0"
Expand Down