9
9
timeout-minutes : 5
10
10
strategy :
11
11
matrix :
12
- php : ["8.0 ", "8.1 "]
12
+ php : ["8.1 ", "8.2", "8.3 "]
13
13
env :
14
14
extensions : mbstring, pcov
15
15
ini : pcov.directory=., "pcov.exclude=\"~(vendor|tests)~\""
16
16
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
19
+ uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
20
20
21
21
- name : Setup PHP cache environment
22
22
id : ext-cache
@@ -27,20 +27,20 @@ jobs:
27
27
key : php-v1
28
28
29
29
- name : Cache PHP extensions
30
- uses : actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
30
+ uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
31
31
with :
32
32
path : ${{ steps.ext-cache.outputs.dir }}
33
33
key : ${{ steps.ext-cache.outputs.key }}
34
34
restore-keys : ${{ steps.ext-cache.outputs.key }}
35
35
36
36
- name : Setup PHP environment
37
- uses : shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # pin@v2
37
+ uses : shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
38
38
with :
39
39
php-version : ${{ matrix.php }}
40
40
extensions : ${{ env.extensions }}
41
41
ini-values : ${{ env.ini }}
42
42
coverage : pcov
43
- tools : phpunit:9 .5.13 , psalm:4.11.2
43
+ tools : phpunit:10 .5.5 , psalm:5.20.0
44
44
45
45
- name : Setup problem matchers
46
46
run : |
52
52
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
53
53
54
54
- name : Cache dependencies
55
- uses : actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
55
+ uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
56
56
with :
57
57
path : ${{ steps.composerCache.outputs.dir }}
58
58
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
63
63
64
64
- name : Cache analysis data
65
65
id : finishPrepare
66
- uses : actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
66
+ uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
67
67
with :
68
68
path : ~/.cache/psalm
69
69
key : backend-analysis-${{ matrix.php }}-v2
@@ -91,12 +91,12 @@ jobs:
91
91
runs-on : ubuntu-latest
92
92
timeout-minutes : 5
93
93
env :
94
- php : " 8.0 "
94
+ php : " 8.2 "
95
95
extensions : mbstring
96
96
97
97
steps :
98
98
- name : Checkout
99
- uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
99
+ uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
100
100
101
101
- name : Setup PHP cache environment
102
102
id : ext-cache
@@ -107,15 +107,15 @@ jobs:
107
107
key : php-v1
108
108
109
109
- name : Cache PHP extensions
110
- uses : actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
110
+ uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
111
111
with :
112
112
path : ${{ steps.ext-cache.outputs.dir }}
113
113
key : ${{ steps.ext-cache.outputs.key }}
114
114
restore-keys : ${{ steps.ext-cache.outputs.key }}
115
115
116
116
- name : Setup PHP environment
117
117
id : finishPrepare
118
- uses : shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # pin@v2
118
+ uses : shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
119
119
with :
120
120
php-version : ${{ env.php }}
121
121
extensions : ${{ env.extensions }}
@@ -140,7 +140,7 @@ jobs:
140
140
- name : Cache dependencies
141
141
id : composerCache2
142
142
if : always() && steps.composerCache1.outcome == 'success'
143
- uses : actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
143
+ uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
144
144
with :
145
145
path : ${{ steps.composerCache1.outputs.dir }}
146
146
key : ${{ runner.os }}-composer-locked-${{ hashFiles('**/composer.lock') }}
@@ -171,17 +171,17 @@ jobs:
171
171
172
172
steps :
173
173
- name : Checkout
174
- uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
174
+ uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
175
175
176
176
- name : Setup PHP environment
177
- uses : shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # pin@v2
177
+ uses : shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
178
178
with :
179
179
coverage : none
180
180
tools : php-cs-fixer:3.8.0
181
181
182
182
- name : Cache analysis data
183
183
id : finishPrepare
184
- uses : actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
184
+ uses : actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
185
185
with :
186
186
path : ~/.php-cs-fixer
187
187
key : coding-style
0 commit comments