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

Upgrade dependencies #888

Merged
merged 2 commits into from
Sep 14, 2023
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Create Pull Request
id: cpr
uses: peter-evans/[email protected].0
uses: peter-evans/[email protected].2
with:
body: |-
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.7.12"
version = "3.7.14"
maxColumn = 120
align.preset = most
continuationIndent.defnSite = 2
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down