Skip to content

Commit bde8248

Browse files
committed
update workflows to ubuntu-24.04
ubuntu 20.04 is being deprecated, and will fully unsupported in 2024-04-01
1 parent 3a7e236 commit bde8248

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: Required
3030
needs:
3131
- ci
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-24.04
3333
steps:
3434
- name: Check results
3535
run: |
@@ -41,7 +41,7 @@ jobs:
4141
fail-fast: false
4242
matrix:
4343
os:
44-
- ubuntu-20.04
44+
- ubuntu-24.04
4545
- macos-14
4646
php-version:
4747
- "7.0"
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/checkout@v2
6262

6363
- name: Install libclang for Linux
64-
if: matrix.os == 'ubuntu-20.04'
64+
if: matrix.os == 'ubuntu-24.04'
6565
run: sudo apt-get install -y llvm-10-dev libclang-10-dev
6666

6767
- name: Setup libclang for Macos
@@ -77,7 +77,7 @@ jobs:
7777
tools: php-config
7878

7979
- name: Setup php-fpm for Linux
80-
if: matrix.os == 'ubuntu-20.04'
80+
if: matrix.os == 'ubuntu-24.04'
8181
run: |
8282
sudo apt-get install -y php${{ matrix.php-version }}-fpm
8383
sudo rm -f /usr/sbin/php-fpm

.github/workflows/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
jobs:
2121
license-check:
2222
name: License check
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v2

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
publish:
2727
name: Publish
2828

29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-24.04
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v2

0 commit comments

Comments
 (0)