From 274894562c5871c4fadb88e003af56b0b28d7824 Mon Sep 17 00:00:00 2001 From: Chris Hunt Date: Sat, 17 Feb 2024 10:04:01 +0000 Subject: [PATCH 1/4] Update php version in CI tests --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dc8bec4..34ba62dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: - php-version: '7.4' + php-version: '8.1' extensions: mbstring, dom, fileinfo, mysql, libxml, xml, xmlwriter, dom, tokenizer, filter, json, phar, pcre, openssl, pdo, intl, curl - name: Cache composer dependencies From 2fea82c21ebc2ddd101fcefdcd5ffa05f2f3f7ce Mon Sep 17 00:00:00 2001 From: KodeStar Date: Sat, 17 Feb 2024 10:08:50 +0000 Subject: [PATCH 2/4] Change to php 8.3 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34ba62dd..67e74e0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: - php-version: '8.1' + php-version: '8.3' extensions: mbstring, dom, fileinfo, mysql, libxml, xml, xmlwriter, dom, tokenizer, filter, json, phar, pcre, openssl, pdo, intl, curl - name: Cache composer dependencies @@ -56,4 +56,4 @@ jobs: if: failure() with: name: Logs - path: ./storage/logs \ No newline at end of file + path: ./storage/logs From e7d581244c2940782ec00eef77cf63b686fe8aa4 Mon Sep 17 00:00:00 2001 From: KodeStar Date: Sat, 17 Feb 2024 10:14:55 +0000 Subject: [PATCH 3/4] Update ci.yml --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67e74e0d..376fb278 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,10 @@ jobs: path: vendor key: composer-${{ hashFiles('composer.lock') }} - - name: Run composer install - run: composer install -n --prefer-dist - env: - APP_ENV: testing + #- name: Run composer install + # run: composer install -n --prefer-dist + # env: + # APP_ENV: testing - name: Prepare Laravel Application run: | From 39f23103e4bb9efd37c12f8129fef4fe388e9a48 Mon Sep 17 00:00:00 2001 From: KodeStar Date: Sat, 17 Feb 2024 10:19:12 +0000 Subject: [PATCH 4/4] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 376fb278..457a7d0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: APP_ENV: testing - name: Php code sniffer - run: ./vendor/bin/phpcs + run: ./vendor/bin/phpcs --config-set ignore_warnings_on_exit 1 - name: Upload artifacts uses: actions/upload-artifact@master