@@ -57,13 +57,13 @@ jobs:
5757 - name : Setup problem matchers for PHP
5858 run : echo "::add-matcher::${{ runner.tool_cache }}/php.json"
5959
60- - uses : actions/checkout@v3
60+ - uses : actions/checkout@v4
6161
6262 - name : Get composer cache directory
6363 run : echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
6464
6565 - name : Cache composer dependencies
66- uses : actions/cache@v3
66+ uses : actions/cache@v4
6767 with :
6868 path : $COMPOSER_CACHE
6969 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -125,13 +125,13 @@ jobs:
125125 - name : Setup problem matchers for PHP
126126 run : echo "::add-matcher::${{ runner.tool_cache }}/php.json"
127127
128- - uses : actions/checkout@v3
128+ - uses : actions/checkout@v4
129129
130130 - name : Get composer cache directory
131131 run : echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
132132
133133 - name : Cache composer dependencies
134- uses : actions/cache@v3
134+ uses : actions/cache@v4
135135 with :
136136 path : $COMPOSER_CACHE
137137 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -184,13 +184,13 @@ jobs:
184184 git config --global core.autocrlf false
185185 git config --global core.eol lf
186186
187- - uses : actions/checkout@v3
187+ - uses : actions/checkout@v4
188188
189189 - name : Get composer cache directory
190190 run : echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
191191
192192 - name : Cache composer dependencies
193- uses : actions/cache@v3
193+ uses : actions/cache@v4
194194 with :
195195 path : $COMPOSER_CACHE
196196 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -209,7 +209,7 @@ jobs:
209209
210210 - name : Save coverage data
211211 if : ${{ matrix.php-versions == '8.4' }}
212- uses : actions/upload-artifact@v3
212+ uses : actions/upload-artifact@v4
213213 with :
214214 name : coverage-data
215215 path : ${{ github.workspace }}/build
@@ -246,13 +246,13 @@ jobs:
246246 git config --global core.autocrlf false
247247 git config --global core.eol lf
248248
249- - uses : actions/checkout@v3
249+ - uses : actions/checkout@v4
250250
251251 - name : Get composer cache directory
252252 run : echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
253253
254254 - name : Cache composer dependencies
255- uses : actions/cache@v3
255+ uses : actions/cache@v4
256256 with :
257257 path : $COMPOSER_CACHE
258258 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -269,15 +269,15 @@ jobs:
269269 runs-on : [ubuntu-latest]
270270 needs : [unit-tests-linux]
271271 steps :
272- - uses : actions/checkout@v3
272+ - uses : actions/checkout@v4
273273
274- - uses : actions/download-artifact@v3
274+ - uses : actions/download-artifact@v4
275275 with :
276276 name : coverage-data
277277 path : ${{ github.workspace }}/build
278278
279279 - name : Codecov
280- uses : codecov/codecov-action@v3
280+ uses : codecov/codecov-action@v5
281281 with :
282282 token : ${{ secrets.CODECOV_TOKEN }}
283283 fail_ci_if_error : true
0 commit comments