Skip to content

Commit

Permalink
Merge pull request #154 from containers/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
[skip-ci] Update actions/checkout action to v4
  • Loading branch information
cevich authored Oct 20, 2023
2 parents d277f04 + b42bbe5 commit 6abea93
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 6abea93

Please sign in to comment.