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 from 3.5.0 to 3.5.1 #296

Merged
merged 2 commits into from
Sep 25, 2024
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.3, 3.5.0]
scala: [3.3.3, 3.5.1]
java: [corretto@11, corretto@17]
project: [ldbcJS, ldbcNative, ldbcJVM]
exclude:
- project: ldbcJS
java: corretto@17
- scala: 3.5.0
- scala: 3.5.1
java: corretto@17
- project: ldbcNative
java: corretto@17
Expand Down Expand Up @@ -194,32 +194,32 @@ jobs:
tar xf targets.tar
rm targets.tar

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

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

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

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

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

- name: Inflate target directories (3.5.0, ldbcJVM)
- name: Inflate target directories (3.5.1, ldbcJVM)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
object ScalaVersions {
val scala2 = "2.12.19"
val scala3 = "3.3.3"
val scala34 = "3.5.0"
val scala34 = "3.5.1"
}

object JavaVersions {
Expand Down