diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0f546a..1e1bff9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,13 +25,13 @@ jobs: continue-on-error: true steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/setup-java@v5 with: distribution: corretto java-version: '17' @@ -54,13 +54,13 @@ jobs: continue-on-error: false steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/setup-java@v5 with: distribution: corretto java-version: '17' @@ -97,7 +97,7 @@ jobs: - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: corretto java-version: ${{ matrix.java }} @@ -107,7 +107,7 @@ jobs: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: '0' - name: Test @@ -119,13 +119,13 @@ jobs: if: ${{ github.event_name == 'push' }} steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/setup-java@v5 with: distribution: corretto java-version: '17' @@ -195,13 +195,13 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/setup-java@v5 with: distribution: corretto java-version: '17' @@ -226,13 +226,13 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/setup-java@v5 with: distribution: corretto java-version: '17' @@ -259,7 +259,7 @@ jobs: if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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 72e8e35..f62dc5a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val zioSbtVersion = "0.4.0-alpha.31" +val zioSbtVersion = "0.4.0-alpha.34" val scalaNativeVersion = "0.5.8" addSbtPlugin(("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion).exclude("org.scala-native", "sbt-scala-native"))