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.13.15 #367

Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
java-version: '17'
cache: 'sbt'
- name: Check with Scalafmt
run: sbt ++2.13.14 fmtCheck
run: sbt ++2.13.15 fmtCheck
build:
name: Test
needs: format
strategy:
matrix:
scala:
- 2.13.14
- 3.3.1
- 2.13.15
- 3.3.4
java: [ '11', '17' ]
os:
- ubuntu-latest
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Publish Snapshot for Scala 2.13
run: CI_SNAPSHOT_RELEASE=publish sbt ++2.13.14 releaseIt
run: CI_SNAPSHOT_RELEASE=publish sbt ++2.13.15 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Publish Snapshot for Scala 3
run: CI_SNAPSHOT_RELEASE=publish sbt ++3.3.1 releaseIt
run: CI_SNAPSHOT_RELEASE=publish sbt ++3.3.4 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/it.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'safe for integration tests')
strategy:
matrix:
scala: [2.13.14, 3.3.1]
scala: [2.13.15, 3.3.4]
java: [ '11', '17' ]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Release for Scala 2.13
run: CI_RELEASE=publishSigned sbt ++2.13.14 releaseIt
run: CI_RELEASE=publishSigned sbt ++2.13.15 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Release for Scala 3
run: CI_RELEASE=publishSigned sbt ++3.3.1 releaseIt
run: CI_RELEASE=publishSigned sbt ++3.3.4 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
lazy val V = new {
val ociSdk = "3.51.0"
val scala213 = "2.13.14"
val scala213 = "2.13.15"
val scala3 = "3.3.4"
val `zio-nio` = "2.0.2"
}

Expand All @@ -18,7 +19,7 @@ inThisBuild(
zioVersion := "2.1.11",
organization := "io.laserdisc",
scalaVersion := V.scala213,
crossScalaVersions := Seq(V.scala213, scala3.value),
crossScalaVersions := Seq(V.scala213, V.scala3),
homepage := Some(url("https://github.com/laserdisc-io/zio-oci-objectstorage")),
licenses += "MIT" -> url("http://opensource.org/licenses/MIT"),
developers += Developer("amir", "Amir Saeid", "[email protected]", url("https://github.com/amir"))
Expand Down
Loading