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-reflect to 2.13.15 #530

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12, 2.13, 3]
scala: [2.13.15, 2.13.14, 3.5.1]
java: [temurin@8]
project: [rootJS, rootJVM]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -136,62 +136,62 @@ jobs:
if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false'
run: sbt +update

- name: Download target directories (2.12, rootJS)
- name: Download target directories (2.13.15, rootJS)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.15-rootJS

- name: Inflate target directories (2.12, rootJS)
- name: Inflate target directories (2.13.15, rootJS)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (2.12, rootJVM)
- name: Download target directories (2.13.15, rootJVM)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.15-rootJVM

- name: Inflate target directories (2.12, rootJVM)
- name: Inflate target directories (2.13.15, rootJVM)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (2.13, rootJS)
- name: Download target directories (2.13.14, rootJS)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootJS

- name: Inflate target directories (2.13, rootJS)
- name: Inflate target directories (2.13.14, rootJS)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (2.13, rootJVM)
- name: Download target directories (2.13.14, rootJVM)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootJVM

- name: Inflate target directories (2.13, rootJVM)
- name: Inflate target directories (2.13.14, rootJVM)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3, rootJS)
- name: Download target directories (3.5.1, rootJS)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.5.1-rootJS

- name: Inflate target directories (3, rootJS)
- name: Inflate target directories (3.5.1, rootJS)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3, rootJVM)
- name: Download target directories (3.5.1, rootJVM)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-3.5.1-rootJVM

- name: Inflate target directories (3, rootJVM)
- name: Inflate target directories (3.5.1, rootJVM)
run: |
tar xf targets.tar
rm targets.tar
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Submit Dependencies
uses: scalacenter/sbt-dependency-submission@v2
with:
modules-ignore: rootjs_2.12 rootjs_2.13 rootjs_3 rootjvm_2.12 rootjvm_2.13 rootjvm_3 rootnative_2.12 rootnative_2.13 rootnative_3 readme_2.12 readme_2.13
modules-ignore: rootjs_2.13 rootjs_2.13 rootjs_3 rootjvm_2.13 rootjvm_2.13 rootjvm_3 rootnative_2.13 rootnative_2.13 rootnative_3 readme_2.13 readme_2.13
configs-ignore: test scala-tool scala-doc-tool test-internal

validate-steward:
Expand Down
12 changes: 6 additions & 6 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ pull_request_rules:
- or:
- author=scala-steward
- author=scala-steward[bot]
- status-success=Build and Test (ubuntu-latest, 2.12, temurin@8, rootJS)
- status-success=Build and Test (ubuntu-latest, 2.12, temurin@8, rootJVM)
- status-success=Build and Test (ubuntu-latest, 2.13, temurin@8, rootJS)
- status-success=Build and Test (ubuntu-latest, 2.13, temurin@8, rootJVM)
- status-success=Build and Test (ubuntu-latest, 3, temurin@8, rootJS)
- status-success=Build and Test (ubuntu-latest, 3, temurin@8, rootJVM)
- status-success=Build and Test (ubuntu-latest, 2.13.15, temurin@8, rootJS)
- status-success=Build and Test (ubuntu-latest, 2.13.15, temurin@8, rootJVM)
- status-success=Build and Test (ubuntu-latest, 2.13.14, temurin@8, rootJS)
- status-success=Build and Test (ubuntu-latest, 2.13.14, temurin@8, rootJVM)
- status-success=Build and Test (ubuntu-latest, 3.5.1, temurin@8, rootJS)
- status-success=Build and Test (ubuntu-latest, 3.5.1, temurin@8, rootJVM)
actions:
merge:
method: merge
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ val groupId = "eu.timepit"
val projectName = "fs2-cron"
val rootPkg = s"$groupId.${projectName.replace("-", "")}"

val Scala_2_12 = "2.12.20"
val Scala_2_12 = "2.13.15"
val Scala_2_13 = "2.13.14"
val Scala_3 = "3.5.1"

Expand Down
Loading