@@ -18,15 +18,15 @@ jobs:
18
18
19
19
strategy :
20
20
matrix :
21
- php : ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
21
+ php : ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
22
22
23
- continue-on-error : ${{ matrix.php == '8.3 ' }}
23
+ continue-on-error : ${{ matrix.php == '8.4 ' }}
24
24
25
25
name : " Test: PHP ${{ matrix.php }}"
26
26
27
27
steps :
28
28
- name : Checkout code
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Install PHP
32
32
uses : shivammathur/setup-php@v2
@@ -43,15 +43,15 @@ jobs:
43
43
44
44
strategy :
45
45
matrix :
46
- php : ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
46
+ php : ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
47
47
48
- continue-on-error : ${{ matrix.php == '8.3 ' }}
48
+ continue-on-error : ${{ matrix.php == '8.4 ' }}
49
49
50
50
name : " Unit Test: PHP ${{ matrix.php }}"
51
51
52
52
steps :
53
53
- name : Checkout code
54
- uses : actions/checkout@v3
54
+ uses : actions/checkout@v4
55
55
56
56
- name : Install PHP
57
57
uses : shivammathur/setup-php@v2
@@ -61,17 +61,17 @@ jobs:
61
61
coverage : xdebug
62
62
63
63
# Install dependencies and handle caching in one go.
64
- # @link https://github.com/marketplace/actions/install-composer -dependencies
64
+ # @link https://github.com/marketplace/actions/install-php -dependencies-with-composer
65
65
- name : Install Composer dependencies - normal
66
- if : ${{ matrix.php != '8.3 ' }}
67
- uses : " ramsey/composer-install@v2 "
66
+ if : ${{ matrix.php != '8.4 ' }}
67
+ uses : " ramsey/composer-install@v3 "
68
68
with :
69
69
# Bust the cache at least once a month - output format: YYYY-MM.
70
70
custom-cache-suffix : $(date -u "+%Y-%m")
71
71
72
72
- name : Install Composer dependencies - ignore PHP restrictions
73
- if : ${{ matrix.php == '8.3 ' }}
74
- uses : " ramsey/composer-install@v2 "
73
+ if : ${{ matrix.php == '8.4 ' }}
74
+ uses : " ramsey/composer-install@v3 "
75
75
with :
76
76
composer-options : --ignore-platform-req=php+
77
77
# Bust the cache at least once a month - output format: YYYY-MM.
0 commit comments