From c973e07115b8d9a15ab1f1863e120638e46ecb88 Mon Sep 17 00:00:00 2001 From: Thijs Broersen Date: Sun, 17 Nov 2024 15:42:24 +0100 Subject: [PATCH] update --- .github/workflows/ci.yml | 14 +++++++------- README.md | 2 +- project/plugins.sbt | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e87553b..0684ee53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: with: distribution: corretto java-version: '17' - check-latest: 'true' + check-latest: true - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Check all code compiles @@ -60,7 +60,7 @@ jobs: with: distribution: corretto java-version: '17' - check-latest: 'true' + check-latest: true - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Check if the site workflow is up to date @@ -94,7 +94,7 @@ jobs: with: distribution: corretto java-version: ${{ matrix.java }} - check-latest: 'true' + check-latest: true - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout @@ -120,7 +120,7 @@ jobs: with: distribution: corretto java-version: '17' - check-latest: 'true' + check-latest: true - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Generate Readme @@ -150,7 +150,7 @@ jobs: branch: zio-sbt-website/update-readme commit-message: Update README.md token: ${{ steps.generate-token.outputs.token }} - delete-branch: 'true' + delete-branch: true title: Update README.md - name: Approve PR if: ${{ steps.cpr.outputs.pull-request-number }} @@ -194,7 +194,7 @@ jobs: with: distribution: corretto java-version: '17' - check-latest: 'true' + check-latest: true - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Release @@ -225,7 +225,7 @@ jobs: with: distribution: corretto java-version: '17' - check-latest: 'true' + check-latest: true - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Setup NodeJs diff --git a/README.md b/README.md index a627dab1..4835d025 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The goal of this project is to create the best all-round JSON library for Scala: In order to use this library, we need to add the following line in our `build.sbt` file: ```scala -libraryDependencies += "dev.zio" %% "zio-json" % "0.7.0" +libraryDependencies += "dev.zio" %% "zio-json" % "0.7.3" ``` ## Example diff --git a/project/plugins.sbt b/project/plugins.sbt index e3223f4a..37c1abdd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val zioSbtVersion = "0.0.0+526-a72bd851-SNAPSHOT" +val zioSbtVersion = "0.0.0+527-f0ace4e7-SNAPSHOT" addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")