From 095454527ca956fa25099571c8e0a58801df806a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:32:06 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/audit.yml | 4 ++-- .github/workflows/pipeline.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index fa83799f..10854185 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -12,14 +12,14 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout (PR) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'pull_request' with: ref: ${{ github.event.pull_request.head.ref }} fetch-depth: 0 - name: Checkout (Push) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'push' with: fetch-depth: 0 diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index ddd3d786..ad6a9bbf 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -24,14 +24,14 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout (PR) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'pull_request' with: ref: ${{ github.event.pull_request.head.ref }} fetch-depth: 0 - name: Checkout (Push) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'push' with: fetch-depth: 0