From 0c3eb015da239afc5185e04636ad19f158a589d4 Mon Sep 17 00:00:00 2001 From: Eelco Kruders Date: Mon, 26 May 2025 15:58:05 +0200 Subject: [PATCH 1/2] Updated nesbot/carbon from v2 to v3 in composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ff00b0a..dcf6291 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "composer-runtime-api": "^2.0", "ext-curl": "*", "ext-json": "*", - "nesbot/carbon": "^2.0", + "nesbot/carbon": "^3.0", "psr/http-client-implementation": "^1.0", "php-http/client-common": "^2.5", "php-http/discovery": "^1.14", From 0f8d16663999fb966a63fe074b07578a40cb4ce6 Mon Sep 17 00:00:00 2001 From: Timon de Groot Date: Fri, 30 May 2025 16:19:35 +0200 Subject: [PATCH 2/2] ci: Test against supported PHP versions 8.1 - 8.4 --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 87c193c..fdec017 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,13 +9,13 @@ jobs: code_quality: strategy: matrix: - php_version: [7.4, 8.0, 8.1] + php_version: [8.1, 8.2, 8.3, 8.4] runs-on: ubuntu-latest steps: - name: Checkout hypernode-deploy uses: actions/checkout@v3 - name: Install PHP - uses: shivammathur/setup-php@2.21.1 + uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php_version }} tools: composer:v2