From 1cee2f78ebf43d3a0ae7b159d29b4f0d1e7afedd Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 11 Dec 2022 14:06:33 +0900 Subject: [PATCH 1/5] Test with PHP 8.2 --- .github/workflows/continuous-integration.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 6ba3416..6bd14cd 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -24,6 +24,7 @@ jobs: - '7.4' - '8.0' - '8.1' + - '8.2' steps: - name: Checkout uses: actions/checkout@v1 From b7d1f525f7fb07a78a234aa67103f3ea988275a2 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 11 Dec 2022 14:19:42 +0900 Subject: [PATCH 2/5] Set composer version 2.2 for the compatibility of older(<7.2) PHP version --- .github/workflows/continuous-integration.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 6bd14cd..a8f3329 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -15,7 +15,6 @@ jobs: operating-system: - ubuntu-latest php-version: - - '5.5' - '5.6' - '7.0' - '7.1' @@ -34,7 +33,7 @@ jobs: with: php-version: ${{ matrix.php-version }} coverage: xdebug - tools: none + tools: composer:2.2 ini-values: assert.exception=1, zend.assertions=1 - name: Get composer cache directory From 60b1367145da812038fee7e9f44998a0eaa27afc Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 11 Dec 2022 16:18:32 +0900 Subject: [PATCH 3/5] fixup! Set composer version 2.2 --- .github/workflows/continuous-integration.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a8f3329..2a02cfd 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -15,6 +15,7 @@ jobs: operating-system: - ubuntu-latest php-version: + - '5.5' - '5.6' - '7.0' - '7.1' From 68bececbd334d70e382034e71084b666010471e9 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 11 Dec 2022 16:22:49 +0900 Subject: [PATCH 4/5] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b17c7f1..a715054 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Alternatively, [download a release][], or clone this repository, then map the ## Dependencies -This package requires PHP 5.5 or later. It has been tested on PHP 5.5-8.1. We recommend using the latest available version of PHP as a matter of principle. +This package requires PHP 5.5 or later. It has been tested on PHP 5.5-8.2. We recommend using the latest available version of PHP as a matter of principle. Aura library packages may sometimes depend on external interfaces, but never on external implementations. This allows compliance with community standards From a418c01f56b0391a336d4ab451f112424d2c11d8 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Mon, 12 Dec 2022 08:26:54 +0900 Subject: [PATCH 5/5] Refactor gitHub actions deprecated command --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 2a02cfd..bab818e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -39,7 +39,7 @@ jobs: - name: Get composer cache directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies uses: actions/cache@v2