From 1c0509f0dd6f32edf8c6d53c52ed9b98d11a84cc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 20:18:00 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/site.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90b85852..8418cda8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout current branch - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 - name: Setup Scala and Java @@ -33,7 +33,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout current branch - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v4.1.1 - name: Setup Scala and Java uses: olafurpg/setup-scala@v14 - name: Cache scala dependencies @@ -51,7 +51,7 @@ jobs: scala: ['2.12.18', '2.13.11', '3.3.0'] steps: - name: Checkout current branch - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 - name: Setup Scala and Java @@ -77,7 +77,7 @@ jobs: java: ['11', '17'] steps: - name: Checkout current branch - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 - name: Setup Scala and Java @@ -108,7 +108,7 @@ jobs: if: github.event_name != 'pull_request' steps: - name: Checkout current branch - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 - name: Setup Scala and Java diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 223121b5..67cd24cd 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -18,7 +18,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: '0' - name: Setup Scala @@ -41,7 +41,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.1.1 with: fetch-depth: '0' - name: Setup Scala @@ -65,7 +65,7 @@ jobs: if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event_name == 'published')) }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.1.1 with: ref: ${{ github.head_ref }} fetch-depth: '0'