Skip to content

Commit 10f6a53

Browse files
authored
Update zio to 1.0.0-RC18-1 (#169)
* Update zio to 1.0.0-RC18-1 * build: Switch to checkout action v2 to fix re-running of failed jobs Co-authored-by: Jakub Janeček <[email protected]>
1 parent 553d266 commit 10f6a53

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v2
1212
- name: Set up JDK 1.8
1313
uses: actions/setup-java@v1
1414
with:

.github/workflows/pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v1
8+
- uses: actions/checkout@v2
99
- name: Set up JDK 1.8
1010
uses: actions/setup-java@v1
1111
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v1
10+
- uses: actions/checkout@v2
1111
- name: Set up JDK 1.8
1212
uses: actions/setup-java@v1
1313
with:

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object Dependencies {
3232
val silencerLib = "com.github.ghik" % "silencer-lib" % Versions.silencer cross CrossVersion.full
3333
val slf4jApi = "org.slf4j" % "slf4j-api" % "1.7.30"
3434
val sslConfig = "com.typesafe" %% "ssl-config-core" % "0.4.2"
35-
val zio = "dev.zio" %% "zio" % "1.0.0-RC17"
35+
val zio = "dev.zio" %% "zio" % "1.0.0-RC18-1"
3636
val zioInteropCats = "dev.zio" %% "zio-interop-cats" % "2.0.0.0-RC11"
3737

3838
object Versions {

0 commit comments

Comments
 (0)