diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6adfd11..c9082ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: continue-on-error: true steps: - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: '0' - name: Install libuv @@ -57,7 +57,7 @@ jobs: continue-on-error: false steps: - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: '0' - name: Install libuv @@ -110,7 +110,7 @@ jobs: - name: Cache Dependencies uses: coursier/cache-action@v8 - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: '0' - name: Test @@ -119,10 +119,10 @@ jobs: name: Update README runs-on: ubuntu-latest continue-on-error: false - if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} + if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} steps: - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: '0' - name: Install libuv @@ -198,7 +198,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: '0' - name: Install libuv @@ -229,7 +229,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: '0' - name: Install libuv @@ -260,7 +260,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 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 e3477f2..7613af5 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val zioSbtVersion = "0.6.0" +val zioSbtVersion = "0.6.1" val scalaNativeVersion = "0.5.12" addSbtPlugin(("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion).exclude("org.scala-native", "sbt-scala-native"))