workflows: Use ubuntu-24.04 for tests

Pin the ubuntu os version at 24.04 to avoid unexpected changes that can
happen when using ubuntu-latest
This commit is contained in:
Brian C. Lane 2025-02-12 09:55:51 -08:00 committed by Simon de Vlieger
parent 1a2637b1a3
commit 26b48e87a9
3 changed files with 7 additions and 7 deletions

View file

@ -8,7 +8,7 @@ permissions:
jobs:
spelling_checker:
name: "Spelling"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
@ -18,7 +18,7 @@ jobs:
python_code_linters:
name: "Python Linters"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: "Clone Repository"
uses: actions/checkout@v4
@ -31,7 +31,7 @@ jobs:
shell_linters:
name: "Shell Linters"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: "Clone Repository"
@ -47,7 +47,7 @@ jobs:
packit-config-lint:
name: "📦 Packit config lint"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: registry.fedoraproject.org/fedora:latest
steps: