1818
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v5
21+ uses : actions/checkout@v6
2222 with :
2323 fetch-depth : 1
2424 ref : ${{ github.event.pull_request.head.sha || github.sha }}
4949
5050 steps :
5151 - name : Checkout
52- uses : actions/checkout@v5
52+ uses : actions/checkout@v6
5353 with :
5454 fetch-depth : 1
5555 ref : ${{ github.event.pull_request.head.sha || github.sha }}
7777 echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
7878
7979 - name : Cache Composer cache directory
80- uses : actions/cache@v4
80+ uses : actions/cache@v5
8181 with :
8282 path : ${{ steps.composer-cache.outputs.dir }}
8383 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -122,7 +122,7 @@ jobs:
122122 run : git config --global core.autocrlf false
123123
124124 - name : Checkout
125- uses : actions/checkout@v5
125+ uses : actions/checkout@v6
126126 with :
127127 fetch-depth : 1
128128 ref : ${{ github.event.pull_request.head.sha || github.sha }}
@@ -151,7 +151,7 @@ jobs:
151151 echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
152152
153153 - name : Cache Composer cache directory
154- uses : actions/cache@v4
154+ uses : actions/cache@v5
155155 with :
156156 path : ${{ steps.composer-cache.outputs.dir }}
157157 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -165,15 +165,18 @@ jobs:
165165
166166 - name : Upload test results to Codecov.io
167167 if : ${{ !cancelled() }}
168- uses : codecov/test-results- action@v1
168+ uses : codecov/codecov- action@v5
169169 with :
170170 token : ${{ secrets.CODECOV_TOKEN }}
171+ report_type : test_results
171172 disable_search : true
172173 files : ./test-results.xml
173174
174175 - name : Upload code coverage data to Codecov.io
175- uses : codecov/codecov-action@v4
176+ if : ${{ !cancelled() }}
177+ uses : codecov/codecov-action@v5
176178 with :
177179 token : ${{ secrets.CODECOV_TOKEN }}
180+ report_type : coverage
178181 disable_search : true
179182 files : ./code-coverage.xml
0 commit comments