From 1b2701c1e2ee6952f7fcc028e0b21d9ae1c91915 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:05:38 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77e863a1..d865d28d 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@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Setup Scala @@ -43,7 +43,7 @@ jobs: continue-on-error: false steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Setup Scala @@ -81,7 +81,7 @@ jobs: java-version: ${{ matrix.java }} check-latest: true - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Test @@ -108,7 +108,7 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Setup Scala @@ -133,7 +133,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Setup Scala @@ -160,7 +160,7 @@ jobs: if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: ref: ${{ github.head_ref }} fetch-depth: '0'