|
70 | 70 | git config --global core.autocrlf false |
71 | 71 | git config --global core.eol lf |
72 | 72 |
|
73 | | - - uses: actions/checkout@v4 |
| 73 | + - uses: actions/checkout@v5 |
74 | 74 |
|
75 | 75 | - name: Get composer cache directory |
76 | 76 | run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" |
@@ -133,7 +133,7 @@ jobs: |
133 | 133 | git config --global core.autocrlf false |
134 | 134 | git config --global core.eol lf |
135 | 135 |
|
136 | | - - uses: actions/checkout@v4 |
| 136 | + - uses: actions/checkout@v5 |
137 | 137 |
|
138 | 138 | - name: Get composer cache directory |
139 | 139 | run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" |
@@ -170,7 +170,15 @@ jobs: |
170 | 170 | - name: Setup problem matchers for PHP |
171 | 171 | run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" |
172 | 172 |
|
173 | | - - uses: actions/checkout@v4 |
| 173 | + - name: Setup problem matchers for PHPUnit |
| 174 | + run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" |
| 175 | + |
| 176 | + - name: Set git to use LF |
| 177 | + run: | |
| 178 | + git config --global core.autocrlf false |
| 179 | + git config --global core.eol lf |
| 180 | +
|
| 181 | + - uses: actions/checkout@v5 |
174 | 182 |
|
175 | 183 | - name: Get composer cache directory |
176 | 184 | run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" |
@@ -224,7 +232,15 @@ jobs: |
224 | 232 | - name: Setup problem matchers for PHP |
225 | 233 | run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" |
226 | 234 |
|
227 | | - - uses: actions/checkout@v4 |
| 235 | + - name: Setup problem matchers for PHPUnit |
| 236 | + run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" |
| 237 | + |
| 238 | + - name: Set git to use LF |
| 239 | + run: | |
| 240 | + git config --global core.autocrlf false |
| 241 | + git config --global core.eol lf |
| 242 | +
|
| 243 | + - uses: actions/checkout@v5 |
228 | 244 |
|
229 | 245 | - name: Get composer cache directory |
230 | 246 | run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" |
@@ -254,9 +270,9 @@ jobs: |
254 | 270 | needs: [unit-tests-linux] |
255 | 271 |
|
256 | 272 | steps: |
257 | | - - uses: actions/checkout@v4 |
| 273 | + - uses: actions/checkout@v5 |
258 | 274 |
|
259 | | - - uses: actions/download-artifact@v4 |
| 275 | + - uses: actions/download-artifact@v5 |
260 | 276 | with: |
261 | 277 | name: coverage-data |
262 | 278 | path: ${{ github.workspace }}/build |
|
0 commit comments