mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 10:16:12 +01:00
[TASK] Upgrade the GitHub Actions CI runners to Ubuntu 24.04 (#1317)
This commit is contained in:
parent
0f9e2c7c27
commit
f4d460ce63
5 changed files with 10 additions and 10 deletions
2
.github/workflows/auto-approve.yml
vendored
2
.github/workflows/auto-approve.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
auto-approve:
|
auto-approve:
|
||||||
name: Dependabot auto-approve
|
name: Dependabot auto-approve
|
||||||
|
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
if: ${{ github.actor == 'dependabot[bot]' }}
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
||||||
|
|
||||||
|
|
2
.github/workflows/auto-merge.yml
vendored
2
.github/workflows/auto-merge.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
auto-merge:
|
auto-merge:
|
||||||
name: Dependabot auto-merge
|
name: Dependabot auto-merge
|
||||||
|
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
if: ${{ github.actor == 'dependabot[bot]' }}
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
||||||
|
|
||||||
|
|
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -14,7 +14,7 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
php-lint:
|
php-lint:
|
||||||
name: "PHP linter"
|
name: "PHP linter"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -40,7 +40,7 @@ jobs:
|
||||||
- "8.3"
|
- "8.3"
|
||||||
code-quality:
|
code-quality:
|
||||||
name: "Code quality checks"
|
name: "Code quality checks"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -82,7 +82,7 @@ jobs:
|
||||||
- "8.3"
|
- "8.3"
|
||||||
code-quality-frontend:
|
code-quality-frontend:
|
||||||
name: "Code quality frontend checks"
|
name: "Code quality frontend checks"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -104,7 +104,7 @@ jobs:
|
||||||
npm run lint:${{ matrix.command }}
|
npm run lint:${{ matrix.command }}
|
||||||
unit-tests:
|
unit-tests:
|
||||||
name: "Unit tests"
|
name: "Unit tests"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
needs: php-lint
|
needs: php-lint
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
|
@ -198,7 +198,7 @@ jobs:
|
||||||
composer-dependencies: highest
|
composer-dependencies: highest
|
||||||
functional-tests:
|
functional-tests:
|
||||||
name: "Functional tests"
|
name: "Functional tests"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
needs: php-lint
|
needs: php-lint
|
||||||
env:
|
env:
|
||||||
DB_DATABASE: typo3
|
DB_DATABASE: typo3
|
||||||
|
@ -305,7 +305,7 @@ jobs:
|
||||||
composer-dependencies: highest
|
composer-dependencies: highest
|
||||||
documentation:
|
documentation:
|
||||||
name: Documentation
|
name: Documentation
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
2
.github/workflows/codecoverage.yml
vendored
2
.github/workflows/codecoverage.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
name: "Calculate code coverage"
|
name: "Calculate code coverage"
|
||||||
permissions:
|
permissions:
|
||||||
actions: write
|
actions: write
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
env:
|
env:
|
||||||
DB_DATABASE: typo3
|
DB_DATABASE: typo3
|
||||||
DB_USER: root
|
DB_USER: root
|
||||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
publish:
|
publish:
|
||||||
permissions:
|
permissions:
|
||||||
actions: write
|
actions: write
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in a new issue