Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

GHA Runners are rolled back to Ubuntu 22.04 #56

Merged
merged 1 commit into from
Feb 7, 2025
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
28 changes: 14 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build_74_php_debian:
concurrency: build_debian_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout the repo
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_74_cli_debian:
concurrency: build_debian_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_74_php_debian
steps:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_74_fpm_debian:
concurrency: build_debian_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_74_cli_debian
steps:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_74_apache_debian:
concurrency: build_debian_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_74_fpm_debian
steps:
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_php_debian:
concurrency: build_debian_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout the repo
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_cli_debian:
concurrency: build_debian_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_82_php_debian
steps:
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_fpm_debian:
concurrency: build_debian_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_82_cli_debian
steps:
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_apache_debian:
concurrency: build_debian_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_82_fpm_debian
steps:
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_74_php_alpine:
concurrency: build_alpine_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout the repo
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_74_cli_alpine:
concurrency: build_alpine_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_74_php_alpine
steps:
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_74_fpm_alpine:
concurrency: build_alpine_74
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_74_cli_alpine
steps:
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_php_alpine:
concurrency: build_alpine_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout the repo
Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_cli_alpine:
concurrency: build_alpine_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_82_php_alpine
steps:
Expand Down Expand Up @@ -474,7 +474,7 @@ jobs:
PHP8_SOCKETS_WORKAROUND=${{ steps.generate.outputs.PHP8_SOCKETS_WORKAROUND }}
build_82_fpm_alpine:
concurrency: build_alpine_82
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- build_82_cli_alpine
steps:
Expand Down
2 changes: 1 addition & 1 deletion make-workflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ EOF)
cat <<EOF
${id}:
concurrency: ${concurrency}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
${needs}
steps:
- name: Checkout the repo
Expand Down