From 11a20cc08c4e0e4c725a0338ea42b3026635b797 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Sun, 7 Apr 2024 14:24:55 +0200 Subject: [PATCH] chore: fix ci deprecations, add testrungs fpr PHP 8.2 and 8.3 --- .github/workflows/static_tests.yml | 2 +- .github/workflows/tests.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static_tests.yml b/.github/workflows/static_tests.yml index 9e06766..ee6bc25 100644 --- a/.github/workflows/static_tests.yml +++ b/.github/workflows/static_tests.yml @@ -10,7 +10,7 @@ jobs: static_tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: 8.1 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 39e4f7e..afe6ec8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,6 +13,8 @@ jobs: matrix: php: - "8.1" + - "8.2" + - "8.3" dependency-version: # - prefer-lowest - prefer-stable @@ -20,7 +22,7 @@ jobs: name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} - tests steps: # basically git clone - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Git run: |