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:
parent
1a2637b1a3
commit
26b48e87a9
3 changed files with 7 additions and 7 deletions
8
.github/workflows/check.yml
vendored
8
.github/workflows/check.yml
vendored
|
|
@ -8,7 +8,7 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
spelling_checker:
|
spelling_checker:
|
||||||
name: "Spelling"
|
name: "Spelling"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: codespell-project/actions-codespell@master
|
- uses: codespell-project/actions-codespell@master
|
||||||
|
|
@ -18,7 +18,7 @@ jobs:
|
||||||
|
|
||||||
python_code_linters:
|
python_code_linters:
|
||||||
name: "Python Linters"
|
name: "Python Linters"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone Repository"
|
- name: "Clone Repository"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
|
|
||||||
shell_linters:
|
shell_linters:
|
||||||
name: "Shell Linters"
|
name: "Shell Linters"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone Repository"
|
- name: "Clone Repository"
|
||||||
|
|
@ -47,7 +47,7 @@ jobs:
|
||||||
|
|
||||||
packit-config-lint:
|
packit-config-lint:
|
||||||
name: "📦 Packit config lint"
|
name: "📦 Packit config lint"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
container:
|
container:
|
||||||
image: registry.fedoraproject.org/fedora:latest
|
image: registry.fedoraproject.org/fedora:latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
2
.github/workflows/test-on-centos.yml
vendored
2
.github/workflows/test-on-centos.yml
vendored
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
- version: "10"
|
- version: "10"
|
||||||
pytest_exclude: 'not (TestBoot and boot) and not (test_write_read)'
|
pytest_exclude: 'not (TestBoot and boot) and not (test_write_read)'
|
||||||
name: "Unittests on Centos Stream ${{ matrix.centos.version }}"
|
name: "Unittests on Centos Stream ${{ matrix.centos.version }}"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -13,7 +13,7 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
test_suite:
|
test_suite:
|
||||||
name: "Unittest"
|
name: "Unittest"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
@ -59,7 +59,7 @@ jobs:
|
||||||
|
|
||||||
v1_manifests:
|
v1_manifests:
|
||||||
name: "Assembler test (legacy)"
|
name: "Assembler test (legacy)"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone Repository"
|
- name: "Clone Repository"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue