diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2f3d8e45..b53360991 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: continue-on-error: true steps: - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv @@ -47,7 +47,7 @@ jobs: continue-on-error: false steps: - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv @@ -87,7 +87,7 @@ jobs: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Test @@ -105,7 +105,7 @@ jobs: if: ${{ github.event_name == 'push' }} steps: - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv @@ -134,7 +134,7 @@ jobs: app_private_key: ${{ secrets.APP_PRIVATE_KEY }} - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v5.0.0 + uses: peter-evans/create-pull-request@v5.0.2 with: body: |- Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin. @@ -179,7 +179,7 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv @@ -208,7 +208,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv @@ -239,7 +239,7 @@ jobs: if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} steps: - name: Git Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: notify the main repo about the new release of docs package diff --git a/.scalafmt.conf b/.scalafmt.conf index 4e99f51f0..07e2b8c7b 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.7.12" +version = "3.7.14" maxColumn = 120 align.preset = most continuationIndent.defnSite = 2 diff --git a/build.sbt b/build.sbt index 5116fdd6d..59cbe66c1 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ inThisBuild( zioVersion := "2.0.16", scala212 := "2.12.18", scala213 := "2.13.11", - scala3 := "3.3.0", + scala3 := "3.3.1", ciEnabledBranches := List("master"), ciExtraTestSteps := List( SingleStep( diff --git a/project/Dependencies.scala b/project/Dependencies.scala index fc549a7a4..e1123dc78 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -4,12 +4,12 @@ object Dependencies { private object Versions { val CatsEffect = "3.5.1" val EmbeddedRedis = "0.6" - val Redis4Cats = "1.4.3" + val Redis4Cats = "1.5.0" val Sttp = "3.9.0" val ZHttp = "2.0.0-RC11" val ZioConfig = "3.0.7" val ZioJson = "0.6.2" - val ZioSchema = "0.4.13" + val ZioSchema = "0.4.14" } lazy val Benchmarks =