From 8d5a859c4137ab82e23f998b69704aff8e564d53 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Sat, 4 Feb 2023 15:52:50 +0100 Subject: [PATCH 1/3] chore: add tests for php 8.2, run --prefer-lowest only on lowest php version, bump github action versions --- .github/workflows/run-tests.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4a4f93f..b881727 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,17 +9,23 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1] - dependency-version: [prefer-lowest, prefer-stable] + php: [8.0, 8.1, 8.2] + dependency-version: [prefer-stable] + include: + - php: '8.0' + stability: prefer-lowest + - php: '8.0' + - php: '8.1' + - php: '8.2' name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: dependencies-laravel-8-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} From 7796f5a79b54fba400e812b4d2ea9dcea6d94fe4 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Sat, 4 Feb 2023 15:54:06 +0100 Subject: [PATCH 2/3] chore: add tests for php 8.2, run --prefer-lowest only on lowest php version, bump github action versions --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b881727..32f8bd3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,7 +13,7 @@ jobs: dependency-version: [prefer-stable] include: - php: '8.0' - stability: prefer-lowest + dependency-version: prefer-lowest - php: '8.0' - php: '8.1' - php: '8.2' From 4f0f542e5c55dc7c34a0e80670a988fb9f126649 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 13 Apr 2024 10:34:36 +0200 Subject: [PATCH 3/3] Update run-tests.yml --- .github/workflows/run-tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 32f8bd3..61f7bec 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1, 8.2] + php: [8.0, 8.1, 8.2, 8.3] dependency-version: [prefer-stable] include: - php: '8.0' @@ -17,15 +17,16 @@ jobs: - php: '8.0' - php: '8.1' - php: '8.2' + - php: '8.3' name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.composer/cache/files key: dependencies-laravel-8-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}