From b42bbe547b85850efba67b4fa545a73478968311 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:15:11 +0000 Subject: [PATCH] [skip-ci] Update actions/checkout action to v4 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/action_helper_test.yml | 2 +- .github/workflows/cirrus-ci_retrospective.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- .github/workflows/ubuntu_unit_tests.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/action_helper_test.yml b/.github/workflows/action_helper_test.yml index f54e9e6..8accab1 100644 --- a/.github/workflows/action_helper_test.yml +++ b/.github/workflows/action_helper_test.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone the repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false path: ./ diff --git a/.github/workflows/cirrus-ci_retrospective.yml b/.github/workflows/cirrus-ci_retrospective.yml index 72ef8e7..9f2ec78 100644 --- a/.github/workflows/cirrus-ci_retrospective.yml +++ b/.github/workflows/cirrus-ci_retrospective.yml @@ -44,7 +44,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} - name: Clone latest main branch repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 path: ./main @@ -84,7 +84,7 @@ jobs: # block allow direct checkout of PR code. - if: steps.retro.outputs.do_intg == 'true' name: Clone all repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Get ALL available history to avoid problems during any run of # 'git describe' from any script in the repo. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 830cdc1..331a4ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: unit-tests: # N/B: Duplicates `ubuntu_unit_tests.yml` - templating not supported runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Testing installer requires a full repo. history fetch-depth: 0 @@ -77,7 +77,7 @@ jobs: tag_name: ${{ steps.get_tag.outputs.TAG_NAME }} release_name: ${{ steps.get_tag.outputs.TAG_NAME }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 path: ./ @@ -102,7 +102,7 @@ jobs: REPO_USER: libpod REPO_NAME: cirrus-ci_retrospective steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 path: ./ diff --git a/.github/workflows/ubuntu_unit_tests.yml b/.github/workflows/ubuntu_unit_tests.yml index 3620b0b..6dcae6b 100644 --- a/.github/workflows/ubuntu_unit_tests.yml +++ b/.github/workflows/ubuntu_unit_tests.yml @@ -6,7 +6,7 @@ jobs: automation_unit-tests: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: false