Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto_branching.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: ${{ needs.check-group-membership.outputs.member == 'true' }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Create the ${{ github.event.inputs.target_branch }} branch
id: create-branch
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:

steps:
- name: Checkout Robottelo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Update target branch label in dependabot yml file
id: update-dependabot
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
swap-size-gb: 10

## Robottelo Repo Checkout
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: ${{ startsWith(matrix.label, '6.') && matrix.label != github.base_ref }}
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto_cherry_pick_merged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
swap-size-gb: 10

## Robottelo Repo Checkout
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: ${{ startsWith(matrix.branch, '6.') && matrix.branch != needs.get-parentPR-details.outputs.base_ref }}
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
github-token: "${{ secrets.GITHUB_TOKEN }}"

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dispatch_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Git User setup
run: "git config --local user.email Satellite-QE.satqe.com && git config --local user.name Satellite-QE"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
UV_SYSTEM_PYTHON: 1
steps:
- name: Checkout Robottelo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set Up Python-${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_robottelo_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# do not store the auth token in git config
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
UV_SYSTEM_PYTHON: 1
steps:
- name: Checkout Robottelo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set Up Python-${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down
Loading