diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 465f30cd..bc4311ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,13 +22,13 @@ jobs: continue-on-error: true steps: - name: Git Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: '8' @@ -47,13 +47,13 @@ jobs: continue-on-error: false steps: - name: Git Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: '8' @@ -79,7 +79,7 @@ jobs: - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: ${{ matrix.java }} @@ -87,7 +87,7 @@ jobs: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Test @@ -99,13 +99,13 @@ jobs: if: ${{ github.event_name == 'push' }} steps: - name: Git Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: '8' @@ -128,7 +128,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. @@ -173,13 +173,13 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: '8' @@ -202,13 +202,13 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: '8' @@ -233,7 +233,7 @@ jobs: if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} steps: - name: Git Checkout - uses: actions/checkout@v3.5.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/project/plugins.sbt b/project/plugins.sbt index 34edc3e7..7a85ed32 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val zioSbtVersion = "0.4.0-alpha.12" +val zioSbtVersion = "0.4.0-alpha.18" addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")