Skip to content

Commit

Permalink
Update scala-library to 2.13.15 (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Oct 20, 2024
1 parent 51626d8 commit 5a79c65
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
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

0 comments on commit 5a79c65

Please sign in to comment.