From 261d64d7c515779378047027c3c4a1cdbf512472 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 11 Dec 2022 13:06:13 +0900 Subject: [PATCH 1/3] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ff72e2d..5e0f179 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /composer.lock /vendor +.phpunit.result.cache From 67f891ec66d36f2999e70636ad21a51ef64a9c75 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 11 Dec 2022 13:09:07 +0900 Subject: [PATCH 2/3] 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 06924ac..a8f3329 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -23,6 +23,7 @@ jobs: - '7.4' - '8.0' - '8.1' + - '8.2' steps: - name: Checkout uses: actions/checkout@v1 From ded1fb4009fdff0c918d279d32cc6cc72534cff3 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Mon, 12 Dec 2022 08:28:27 +0900 Subject: [PATCH 3/3] 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 a8f3329..34b84eb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -38,7 +38,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