Skip to content

Commit

Permalink
[TASK] Update ubuntu images in gh workflows
Browse files Browse the repository at this point in the history
Github is dropping support for old images. So we update to
the latest ubuntu lts images.
  • Loading branch information
mschwemer committed Feb 20, 2025
1 parent 3d82039 commit 8f5e74a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
php-lint:
name: "PHP linter"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: "Checkout"
uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
- 8.3
typoscript-lint:
name: "TypoScript linter"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: "Checkout"
uses: actions/checkout@v4
Expand All @@ -42,7 +42,7 @@ jobs:
config_file: ".project/tests/typoscript-lint.yml"
php-cs-fixer:
name: "PHP CS Fixer"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: php-lint
steps:
- name: "Checkout"
Expand All @@ -57,7 +57,7 @@ jobs:
run: "composer test:php:cs"
phpstan:
name: "PHPstan"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: php-lint
steps:
- name: "Checkout"
Expand All @@ -72,7 +72,7 @@ jobs:
run: "composer test:php:phpstan"
unit-tests:
name: "PHP Unit Tests"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: php-lint
steps:
- name: Checkout
Expand Down

0 comments on commit 8f5e74a

Please sign in to comment.