Skip to content

Commit

Permalink
Fix and update CI configuration
Browse files Browse the repository at this point in the history
Specify the latest Ubuntu runner and Python version.
  • Loading branch information
anzoman committed Jan 24, 2024
1 parent 94dd36f commit cdae200
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@ on: push

jobs:
validate:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout this repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: 3.10.4
cache: 'pip'

- name: Install preprequisites
run: |
python -m pip install --upgrade pip
pip install pyyaml==5.3.1
pip install --upgrade opera-tosca-parser
- name: Run validation script
Expand Down

0 comments on commit cdae200

Please sign in to comment.