From 8b5ee24f085c00d70467d47d7173e8e86d6823f8 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 29 Dec 2023 17:05:31 +0100 Subject: [PATCH] GH Actions: update PHP version for PHAR boxing Looks like Box silently dropped support for PHP 8.1. Upgrading the version on which Box is run to 8.2 should fix this. The resulting PHAR files should still work fine on PHP < 8.2. Ref: https://github.com/box-project/box/releases Note: this commit will need to be back-ported to the `master` branch to get passing builds there again too. --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3a9e89..ededca9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.1 + php-version: 8.2 extensions: exif, phar, openssl, sodium coverage: none ini-values: phar.readonly=Off, error_reporting=-1, display_errors=On, zend.assertions=1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53ce825..8a4c6e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.1 + php-version: 8.2 extensions: exif, phar, openssl, sodium coverage: none ini-values: phar.readonly=Off, error_reporting=-1, display_errors=On, zend.assertions=1