From d98c774a00fef4c8cdcc126566163de10a1ad6ed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Mar 2023 21:05:53 +0000 Subject: [PATCH] Update actions/checkout action to v3.4.0 --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/site.yml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0b23dd..a2ea1f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout current branch - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.4.0 with: fetch-depth: 0 - name: Setup Scala and Java @@ -32,7 +32,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout current branch - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.4.0 - name: Setup Scala and Java uses: olafurpg/setup-scala@v14 - name: Cache scala dependencies @@ -45,7 +45,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout current branch - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.4.0 - name: Setup Scala and Java uses: olafurpg/setup-scala@v14 - name: Cache scala dependencies @@ -63,7 +63,7 @@ jobs: platform: ['JVM'] steps: - name: Checkout current branch - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.4.0 with: fetch-depth: 0 - name: Setup Scala and Java @@ -83,7 +83,7 @@ jobs: platform: ['JVM'] steps: - name: Checkout current branch - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.4.0 - name: Setup Scala and Java uses: olafurpg/setup-scala@v14 with: @@ -106,7 +106,7 @@ jobs: if: github.event_name != 'pull_request' steps: - name: Checkout current branch - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.4.0 with: fetch-depth: 0 - name: Setup Scala and Java diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index a9e071b..fc7c96b 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@v3.4.0 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@v3.4.0 with: fetch-depth: '0' - name: Setup Scala @@ -65,7 +65,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@v3.4.0 with: ref: ${{ github.head_ref }} fetch-depth: '0'