Skip to content
Merged
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_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.0.1
if: ${{ startsWith(matrix.label, '6.') && matrix.label != github.base_ref }}
with:
fetch-depth: 0
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- name: is autoMerging enabled for Auto CherryPicked PRs ?
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(github.event.pull_request.labels.*.name, 'AutoMerge_Cherry_Picked') }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto_cherry_pick_merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Wait for other status checks to Pass
id: waitforstatuschecks
uses: lewagon/wait-on-check-action@v1.5.0
uses: lewagon/wait-on-check-action@v1.9.0
with:
ref: ${{ github.head_ref }}
repo-token: ${{ secrets.CHERRYPICK_PAT }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/auto_cherry_pick_merged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- name: Find parent PR details
id: parentPR
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- name: Convert String to List
id: conversion
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const branches = "${{ github.event.inputs.branches }}";
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
swap-size-gb: 10

## Robottelo Repo Checkout
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.1
if: ${{ startsWith(matrix.branch, '6.') && matrix.branch != needs.get-parentPR-details.outputs.base_ref }}
with:
fetch-depth: 0
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

- name: is autoMerging enabled for Auto CherryPicked PRs ?
if: ${{ always() && steps.cherrypick.outcome == 'success' && contains(needs.get-parentPR-details.outputs.labels.*.name, 'AutoMerge_Cherry_Picked') }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency_merge_zstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Wait for other status checks to Pass
id: waitforstatuschecks
uses: lewagon/wait-on-check-action@v1.5.0
uses: lewagon/wait-on-check-action@v1.9.0
with:
ref: ${{ github.head_ref }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prt_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: "(contains(github.event.pull_request.labels.*.name, 'PRT-Passed'))"
steps:
- name: remove the PRT Passed label, for new commit
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prt_result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Add the PRT passed/failed labels
id: prt-status
if: ${{ always() && github.event.inputs.build_status != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand All @@ -61,7 +61,7 @@ jobs:
});
- name: Remove failed label on test pass or vice-versa
if: ${{ always() && github.event.inputs.build_status != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.CHERRYPICK_PAT }}
script: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
UV_SYSTEM_PYTHON: 1
steps:
- name: Checkout Robottelo
uses: actions/checkout@v6
uses: actions/checkout@v7.0.1

- name: Set Up Python-${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Restore uv cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
Expand All @@ -42,7 +42,7 @@ jobs:
uv-${{ runner.os }}

- name: Restore Jira Status Cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
# If the path is changed in the validator or jira.yaml.template, it should be changed here too
path: jira_status_cache.json
Expand Down
6 changes: 3 additions & 3 deletions .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.0.1
with:
# do not store the auth token in git config
persist-credentials: false
Expand All @@ -29,7 +29,7 @@ jobs:

- name: Build Robottelo image
id: build-image
uses: redhat-actions/buildah-build@v2
uses: redhat-actions/buildah-build@v3
with:
image: robottelo
tags: ${{ steps.image_tag.outputs.IMAGE_TAG }}
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Push Robottelo image to quay.io
id: push-to-quay
uses: redhat-actions/push-to-registry@v2
uses: redhat-actions/push-to-registry@v3
with:
image: robottelo
tags: ${{ steps.image_tag.outputs.IMAGE_TAG }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
UV_SYSTEM_PYTHON: 1
steps:
- name: Checkout Robottelo
uses: actions/checkout@v6
uses: actions/checkout@v7.0.1

- name: Set Up Python-${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Restore uv cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Save Jira Status Cache
if: always()
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
# If the path is changed in the validator or jira.yaml.template, it should be changed here too
path: jira_status_cache.json
Expand Down