Skip to content

Commit e449f55

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 58b06f9 commit e449f55

8 files changed

Lines changed: 9 additions & 9 deletions

.github/workflows/auto_branching.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
if: ${{ needs.check-group-membership.outputs.member == 'true' }}
4242

4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545

4646
- name: Create the ${{ github.event.inputs.target_branch }} branch
4747
id: create-branch
@@ -228,7 +228,7 @@ jobs:
228228

229229
steps:
230230
- name: Checkout Robottelo
231-
uses: actions/checkout@v4
231+
uses: actions/checkout@v5
232232

233233
- name: Update target branch label in dependabot yml file
234234
id: update-dependabot

.github/workflows/auto_cherry_pick.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
swap-size-gb: 10
4949

5050
## Robottelo Repo Checkout
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
if: ${{ startsWith(matrix.label, '6.') && matrix.label != github.base_ref }}
5353
with:
5454
fetch-depth: 0

.github/workflows/auto_cherry_pick_merged.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
swap-size-gb: 10
104104

105105
## Robottelo Repo Checkout
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v5
107107
if: ${{ startsWith(matrix.branch, '6.') && matrix.branch != needs.get-parentPR-details.outputs.base_ref }}
108108
with:
109109
fetch-depth: 0

.github/workflows/dependency_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818

1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

.github/workflows/dispatch_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Git User setup
2020
run: "git config --local user.email Satellite-QE.satqe.com && git config --local user.name Satellite-QE"

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: ['3.10', '3.11', '3.12']
2121
steps:
2222
- name: Checkout Robottelo
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Set Up Python-${{ matrix.python-version }}
2626
uses: actions/setup-python@v5

.github/workflows/update_robottelo_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Get image tag
2121
id: image_tag

.github/workflows/weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: [3.12]
1818
steps:
1919
- name: Checkout Robottelo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Set Up Python-${{ matrix.python-version }}
2323
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)