@@ -290,7 +290,7 @@ jobs:
290290
291291 - name: Set up Python
292292 id: setup-python
293- uses: actions/setup-python@v4
293+ uses: actions/setup-python@v6
294294 with:
295295 python-version: ${{ matrix.python_version }}
296296
@@ -350,37 +350,37 @@ jobs:
350350
351351The action makes available some data for downstream processing.
352352
353- | Name | Description |
354- | --- | --- |
353+ | Name | Description |
354+ | -------------- | ------------------------------------------------------------------------------------------------ --- |
355355| ` activity_run` | The type of activity that was run. One of `process_pr`, `post_comment`, `save_coverage_data_files`. |
356356
357357All the following outputs are only available when running in PR mode.
358358
359- | Name | Description |
360- | --- | --- |
361- | `comment_file_written` | A boolean indicating whether a comment file was written to `COMMENT_FILENAME` or not. |
362- | `new_covered_lines` | The number of covered lines in the pull request. |
363- | `new_num_statements` | The number of statements in the pull request. |
364- | `new_percent_covered` | The coverage percentage of the pull request. |
365- | `new_missing_lines` | The number of lines with missing coverage in the pull request. |
366- | `new_excluded_lines` | The number of excluded lines in the pull request. |
367- | `new_num_branches` | The number of branches in the pull request. |
368- | `new_num_partial_branches` | The number of partial branches in the pull request. |
369- | `new_covered_branches` | The number of covered branches in the pull request. |
370- | `new_missing_branches` | The number of branches with missing coverage in the pull request. |
371- | `reference_covered_lines` | The number of covered lines in the base branch. |
372- | `reference_num_statements` | The number of statements in the base branch. |
373- | `reference_percent_covered` | The coverage percentage of the base branch. |
374- | `reference_missing_lines` | The number of lines with missing coverage in the base branch. |
375- | `reference_excluded_lines` | The number of excluded lines in the base branch. |
376- | `reference_num_branches` | The number of branches in the base branch. |
377- | `reference_num_partial_branches` | The number of partial branches in the base branch. |
378- | `reference_covered_branches` | The number of covered branches in the base branch. |
379- | `reference_missing_branches` | The number of branches with missing coverage in the base branch. |
380- | `diff_total_num_lines` | The total number of lines in the diff. |
381- | `diff_total_num_violations` | The total number of lines with missing coverage in the diff. |
382- | `diff_total_percent_covered` | The coverage percentage of the diff. |
383- | `diff_num_changed_lines` | The number of changed lines in the diff. |
359+ | Name | Description |
360+ | -------------------------------- | ---------------------------------------------------------------------------------- --- |
361+ | `comment_file_written` | A boolean indicating whether a comment file was written to `COMMENT_FILENAME` or not. |
362+ | `new_covered_lines` | The number of covered lines in the pull request. |
363+ | `new_num_statements` | The number of statements in the pull request. |
364+ | `new_percent_covered` | The coverage percentage of the pull request. |
365+ | `new_missing_lines` | The number of lines with missing coverage in the pull request. |
366+ | `new_excluded_lines` | The number of excluded lines in the pull request. |
367+ | `new_num_branches` | The number of branches in the pull request. |
368+ | `new_num_partial_branches` | The number of partial branches in the pull request. |
369+ | `new_covered_branches` | The number of covered branches in the pull request. |
370+ | `new_missing_branches` | The number of branches with missing coverage in the pull request. |
371+ | `reference_covered_lines` | The number of covered lines in the base branch. |
372+ | `reference_num_statements` | The number of statements in the base branch. |
373+ | `reference_percent_covered` | The coverage percentage of the base branch. |
374+ | `reference_missing_lines` | The number of lines with missing coverage in the base branch. |
375+ | `reference_excluded_lines` | The number of excluded lines in the base branch. |
376+ | `reference_num_branches` | The number of branches in the base branch. |
377+ | `reference_num_partial_branches` | The number of partial branches in the base branch. |
378+ | `reference_covered_branches` | The number of covered branches in the base branch. |
379+ | `reference_missing_branches` | The number of branches with missing coverage in the base branch. |
380+ | `diff_total_num_lines` | The total number of lines in the diff. |
381+ | `diff_total_num_violations` | The total number of lines with missing coverage in the diff. |
382+ | `diff_total_percent_covered` | The coverage percentage of the diff. |
383+ | `diff_num_changed_lines` | The number of changed lines in the diff. |
384384
385385Usage may look like this
386386
0 commit comments