Skip to content

Commit

Permalink
[skip-ci] Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 19, 2023
1 parent d277f04 commit b42bbe5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/action_helper_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cirrus-ci_retrospective.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: ./
Expand All @@ -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: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b42bbe5

Please sign in to comment.