Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ on:
jobs:
cs-fix:
name: Run code style check
runs-on: "ubuntu-24.04"
runs-on: "ubuntu-26.04"
strategy:
matrix:
php:
- '8.3'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ibexa/gh-workflows/actions/composer-install@main
with:
Expand All @@ -30,7 +30,7 @@ jobs:

tests:
name: Unit tests & SQLite integration tests
runs-on: "ubuntu-24.04"
runs-on: "ubuntu-26.04"
timeout-minutes: 15

strategy:
Expand All @@ -41,7 +41,7 @@ jobs:
- '8.4'

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ibexa/gh-workflows/actions/composer-install@main
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
--health-timeout 5s
--health-retries 5
--tmpfs /var/lib/postgres
runs-on: "ubuntu-24.04"
runs-on: "ubuntu-26.04"
timeout-minutes: 60

strategy:
Expand All @@ -93,7 +93,7 @@ jobs:
- 'postgres:18'

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ibexa/gh-workflows/actions/composer-install@main
with:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
--health-timeout=5s
--health-retries=5
--tmpfs=/var/lib/mysql
runs-on: "ubuntu-24.04"
runs-on: "ubuntu-26.04"
timeout-minutes: 60

strategy:
Expand All @@ -145,7 +145,7 @@ jobs:
- 'mysql:8.4'

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ibexa/gh-workflows/actions/composer-install@main
with:
Expand All @@ -165,7 +165,7 @@ jobs:

solr-integration:
name: "Solr integration tests"
runs-on: "ubuntu-24.04"
runs-on: "ubuntu-26.04"
timeout-minutes: 30
permissions:
packages: read
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
- '8.3'
- '8.4'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading