From fe599114229069aadff4c929d327794abe8c81c8 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 10 Sep 2023 13:11:16 +0200 Subject: [PATCH] Add PHP 8.3 and bump actions/checkout --- .github/workflows/php.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index a4b6557..9088dae 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -1,5 +1,8 @@ name: JSON Serializer CI +permissions: + contents: read + on: push: pull_request: @@ -9,10 +12,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] + php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] name: PHP ${{ matrix.php-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Validate composer.json and composer.lock run: composer validate - name: Cache Composer packages