diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fd0f1c1..3a080cda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: continue-on-error: true steps: - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Install libuv @@ -47,7 +47,7 @@ jobs: continue-on-error: false steps: - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Install libuv @@ -87,7 +87,7 @@ jobs: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Test @@ -99,7 +99,7 @@ jobs: if: ${{ github.event_name == 'push' }} steps: - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Install libuv @@ -173,7 +173,7 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Install libuv @@ -202,7 +202,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Install libuv @@ -233,7 +233,7 @@ jobs: if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} steps: - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: notify the main repo about the new release of docs package diff --git a/README.md b/README.md index a3b459fd..bee37220 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ test: - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.12.0 + uses: actions/setup-java@v3.13.0 with: distribution: corretto java-version: ${{ matrix.java }} @@ -153,7 +153,7 @@ test: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Test @@ -222,7 +222,7 @@ test: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Test diff --git a/docs/index.md b/docs/index.md index a138a1fe..f0d1893b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -144,7 +144,7 @@ test: - name: Install libuv run: sudo apt-get update && sudo apt-get install -y libuv1-dev - name: Setup Scala - uses: actions/setup-java@v3.12.0 + uses: actions/setup-java@v3.13.0 with: distribution: corretto java-version: ${{ matrix.java }} @@ -152,7 +152,7 @@ test: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Test @@ -221,7 +221,7 @@ test: - name: Cache Dependencies uses: coursier/cache-action@v6 - name: Git Checkout - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Test diff --git a/zio-sbt-ci/src/main/scala/zio/sbt/V.scala b/zio-sbt-ci/src/main/scala/zio/sbt/V.scala index f1ebd7b7..9fc1ee9f 100644 --- a/zio-sbt-ci/src/main/scala/zio/sbt/V.scala +++ b/zio-sbt-ci/src/main/scala/zio/sbt/V.scala @@ -6,7 +6,7 @@ object V { "peter-evans/create-pull-request" -> "v5.0.2", "zio/generate-github-app-token" -> "v1.0.0", "pierotofy/set-swap-space" -> "master", - "actions/checkout" -> "v4.1.0", + "actions/checkout" -> "v4.1.1", "actions/setup-java" -> "v3.13.0", "coursier/cache-action" -> "v6", "actions/setup-node" -> "v3" diff --git a/zio-sbt-ecosystem/src/sbt-test/zio-sbt-ecosystem/verifySettingsWithCI/.github/workflows/ci.yml b/zio-sbt-ecosystem/src/sbt-test/zio-sbt-ecosystem/verifySettingsWithCI/.github/workflows/ci.yml index 1dadb578..7c9f2d91 100644 --- a/zio-sbt-ecosystem/src/sbt-test/zio-sbt-ecosystem/verifySettingsWithCI/.github/workflows/ci.yml +++ b/zio-sbt-ecosystem/src/sbt-test/zio-sbt-ecosystem/verifySettingsWithCI/.github/workflows/ci.yml @@ -24,8 +24,8 @@ jobs: # These version must be different than the versions in V.scala to verify that we are reading from the ci.yml file. scala: ['2.12.18', '2.13.12', '3.3.1' ] steps: - - uses: actions/checkout@v4.1.0 - - uses: actions/setup-java@v3.12.0 + - uses: actions/checkout@v4.1.1 + - uses: actions/setup-java@v3.13.0 with: distribution: corretto java-version: ${{ matrix.java }}