From cdae200d9bc45a19b4cc2ad98b4135f8bb6a5589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C5=BEe=20Luzar?= Date: Wed, 24 Jan 2024 14:40:21 +0100 Subject: [PATCH] Fix and update CI configuration Specify the latest Ubuntu runner and Python version. --- .github/workflows/validate.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 6392381..16d1f99 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -4,13 +4,13 @@ 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' @@ -18,6 +18,7 @@ jobs: - 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