diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 52159fb..7966d68 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Gather CI configuration id: matrix - uses: laminas/laminas-ci-matrix-action@0db1a6827dab14246fdca116c20ac664dd7ca140 # 1.24.0 + uses: laminas/laminas-ci-matrix-action@v1 qa: name: QA Checks @@ -26,7 +26,7 @@ jobs: matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }} steps: - name: ${{ matrix.name }} - uses: laminas/laminas-continuous-integration-action@ead082d804c798775ee65db0bae9cd3b3d863cdb # 1.38.0 + uses: laminas/laminas-continuous-integration-action@v1 with: job: ${{ matrix.job }} services: diff --git a/docs/book/custom-reporters.md b/docs/book/custom-reporters.md index 4b2fe73..3c174f6 100644 --- a/docs/book/custom-reporters.md +++ b/docs/book/custom-reporters.md @@ -29,8 +29,8 @@ A Runner invokes the above methods while running diagnostics in the following or - `onAfterRun` - after each individual check has finished running. - `onFinish` - after Runner has finished its job. - `onStop` - in case Runner has been interrupted: - - when the reporter has returned `false` from the `onAfterRun` method - - or when the runner is configured with `setBreakOnFailure(true)` and one of the checks fails. + - when the reporter has returned `false` from the `onAfterRun` method + - or when the runner is configured with `setBreakOnFailure(true)` and one of the checks fails. Some reporter methods can be used to interrupt the operation of a diagnostics runner: