Skip to content

Upgrade rhel base image from 8.8 to 8.9 (#295) #88

Upgrade rhel base image from 8.8 to 8.9 (#295)

Upgrade rhel base image from 8.8 to 8.9 (#295) #88

name: Check URLs of release packages
on:
push:
paths:
- 'utils/loader.py'
pull_request:
paths:
- 'utils/loader.py'
workflow_dispatch:
inputs:
product_version:
description: 'Product version to check. Default all'
required: false
default: ''
jobs:
loader_links_check:
runs-on: ubuntu-20.04
steps:
- name: Code checkout
uses: actions/checkout@v2
- name: Setting up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Setting up Python dependencies
if: ${{ always() }}
run: python -m pip install -r requirements.txt
- name: Run package URLs check
run: python -m utils.tests.check_loader_links --product_version ${{ github.event.inputs.product_version }}