Skip to content

Commit 24d6ed0

Browse files
committed
updates to fix 8.4 issues + deprecate 7.4 support
1 parent d53ff89 commit 24d6ed0

File tree

5 files changed

+342
-341
lines changed

5 files changed

+342
-341
lines changed

.github/workflows/3x.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
checkout_build:
2525
runs-on: ubuntu-latest
2626
container:
27-
image: quay.io/pantheon-public/php-ci:v7.4
27+
image: quay.io/pantheon-public/php-ci:v8.2
2828
name: Checkout & build Phar
2929
steps:
3030
- name: Checkout
@@ -58,7 +58,7 @@ jobs:
5858
strategy:
5959
matrix:
6060
operating-system: [ 'macos-latest' ]
61-
php-versions: [ '7.4', '8.2', '8.3' ]
61+
php-versions: [ '8.2', '8.3', '8.4' ]
6262
max-parallel: 1
6363
env:
6464
TERMINUS_TOKEN: ${{ secrets.TERMINUS_TOKEN }}
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
name: Release
129129
container:
130-
image: quay.io/pantheon-public/php-ci:v7.4
130+
image: quay.io/pantheon-public/php-ci:v8.2
131131
needs: [ functional ]
132132
if: ${{ startsWith(github.ref, 'refs/tags/') && github.repository == 'pantheon-systems/terminus' }}
133133
steps:

bin/terminus

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (!getenv('TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP') && version_compare(PHP_VERSI
3232

3333
// This variable is automatically managed via updateDependenciesversion() in /RoboFile.php,
3434
// which is run after every call to composer update.
35-
$terminusPluginsDependenciesVersion = 'a6b56bb299';
35+
$terminusPluginsDependenciesVersion = 'f17d1f4aa7';
3636

3737
// Cannot use $_SERVER superglobal since that's empty during phpunit testing
3838
// getenv('HOME') isn't set on Windows and generates a Notice.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
"czproject/git-php": "^4.0",
2525
"guzzlehttp/guzzle": "^7.0",
2626
"justinrainbow/json-schema": "^5.2",
27-
"league/container": "^3",
27+
"league/container": "^3 || ^4",
2828
"monolog/monolog": "^2.2",
29-
"psy/psysh": "^0.11.9",
29+
"psy/psysh": "^0.12",
3030
"rogervila/array-diff-multidimensional": "^2.0",
3131
"symfony/console": "^5",
3232
"symfony/finder": "^5",
3333
"symfony/process": "^5",
3434
"symfony/yaml": "^5",
3535
"twig/twig": "^3.3",
36-
"consolidation/robo": "^3.0"
36+
"consolidation/robo": "^3.0 || ^4.0"
3737
},
3838
"require-dev": {
3939
"ext-pcov": "*",

0 commit comments

Comments
 (0)