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
2 changes: 1 addition & 1 deletion .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:

jobs:
bake:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Docker meta
id: docker_meta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
documentation:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
phpcs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
strategy:
matrix:
php-versions: ['7.4']
Expand All @@ -24,7 +24,7 @@ jobs:
- run: phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p

phpcompatibility:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
strategy:
matrix:
php-versions: ['7.4']
Expand All @@ -38,7 +38,7 @@ jobs:
- run: ~/.composer/vendor/bin/phpcs . --standard=phpcompatibility.xml --warning-severity=0 --extensions=php -p

executable_php_files_check:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v5
- run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/prhtmlgenerator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
jobs:
checks:
name: Check if bridges were changed
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
outputs:
BRIDGES: ${{ steps.check_bridges.outputs.BRIDGES }}
WITH_UPLOAD: ${{ steps.check_upload.outputs.WITH_UPLOAD }}
Expand All @@ -29,7 +29,7 @@ jobs:

test-pr:
name: Generate HTML files
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
needs: checks
if: needs.checks.outputs.BRIDGES > 0
outputs:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

comment-pr:
name: Create or update PR comment
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
needs: test-pr
if: needs.test-pr.outputs.COMMENT_LENGTH > 130
permissions:
Expand Down Expand Up @@ -120,9 +120,9 @@ jobs:

upload-test-results:
name: Upload to GitHub Pages repository
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
needs: test-pr
if: needs.checks.outputs.WITH_UPLOAD == 'true'
if: needs.test-pr.outputs.COMMENT_LENGTH > 130 && needs.checks.outputs.WITH_UPLOAD == 'true'
steps:
- uses: actions/checkout@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
phpunit8:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
Expand Down