Skip to content

Commit 8836d2b

Browse files
use php 8.2 in github workflow
1 parent b7b1eb8 commit 8836d2b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/php.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ permissions:
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
steps:
1817
- uses: actions/checkout@v3
1918

19+
- name: Set up PHP
20+
uses: shivammathur/setup-php@v2
21+
with:
22+
php-version: '8.2'
23+
2024
- name: Cache Composer packages
2125
id: composer-cache
2226
uses: actions/cache@v3
@@ -39,4 +43,4 @@ jobs:
3943
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
4044
SIGNER_EMAIL: ${{ secrets.SIGNER_EMAIL }}
4145
SIGNER_NAME: ${{ secrets.SIGNER_NAME }}
42-
run: composer run-script test
46+
run: composer run-script test

0 commit comments

Comments
 (0)