Skip to content

Commit

Permalink
Update zio, zio-streams, zio-test, ... to 2.1.7 (#355)
Browse files Browse the repository at this point in the history
* Update zio, zio-streams, zio-test, ... to 2.1.7

* force scala 2.13.14

* force 2.13.14 in ci

---------

Co-authored-by: Julien Jean Paul Sirocchi <[email protected]>
  • Loading branch information
scala-steward and sirocchj authored Aug 23, 2024
1 parent 9106855 commit 7e3dba3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
java-version: '17'
cache: 'sbt'
- name: Check with Scalafmt
run: sbt ++2.13.12 fmtCheck
run: sbt ++2.13.14 fmtCheck
build:
name: Test
needs: format
strategy:
matrix:
scala:
- 2.13.12
- 2.13.14
- 3.3.1
java: [ '11', '17' ]
os:
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.12 releaseIt
run: CI_SNAPSHOT_RELEASE=publish sbt ++2.13.14 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.12, 3.3.1]
scala: [2.13.14, 3.3.1]
java: [ '11', '17' ]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .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.12 releaseIt
run: CI_RELEASE=publishSigned sbt ++2.13.14 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
lazy val V = new {
val ociSdk = "3.47.0"
val scala213 = "2.13.14"
val `zio-nio` = "2.0.2"
}

Expand All @@ -14,10 +15,10 @@ enablePlugins(ZioSbtEcosystemPlugin)
inThisBuild(
Seq(
name := "ZIO OCI ObjectStorage",
zioVersion := "2.1.6",
zioVersion := "2.1.7",
organization := "io.laserdisc",
scalaVersion := scala213.value,
crossScalaVersions := Seq(scala213.value, scala3.value),
scalaVersion := V.scala213,
crossScalaVersions := Seq(V.scala213, scala3.value),
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 7e3dba3

Please sign in to comment.