Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c70b4f7a04 | |||
| 54a0566d1c | |||
| adfacf2d27 | |||
| 1e68e06f1d | |||
| 277db52c20 |
+17
-1
@@ -1,3 +1,19 @@
|
|||||||
|
## v5.1.2
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* fix: update statment by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1726
|
||||||
|
* fix: update action script by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1725
|
||||||
|
* fix: prevent oidc on tokenless due to permissioning by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1724
|
||||||
|
* chore(release): wrapper-0.0.31 by @app/codecov-releaser-app in https://github.com/codecov/codecov-action/pull/1723
|
||||||
|
* Put quotes around `${{ inputs.token }}` in `action.yml` by @jwodder in https://github.com/codecov/codecov-action/pull/1721
|
||||||
|
* build(deps): bump github/codeql-action from 3.27.6 to 3.27.9 by @app/dependabot in https://github.com/codecov/codecov-action/pull/1722
|
||||||
|
* Remove mistake from options table by @Acconut in https://github.com/codecov/codecov-action/pull/1718
|
||||||
|
* build(deps): bump github/codeql-action from 3.27.5 to 3.27.6 by @app/dependabot in https://github.com/codecov/codecov-action/pull/1717
|
||||||
|
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.1.1..v5.1.2
|
||||||
|
|
||||||
|
|
||||||
## v5.1.1
|
## v5.1.1
|
||||||
### What's Changed
|
### What's Changed
|
||||||
|
|
||||||
@@ -993,4 +1009,4 @@ for the full list.
|
|||||||
### Dependencies and Misc
|
### Dependencies and Misc
|
||||||
- #166 Bump requestretry from 4.1.1 to 4.1.2
|
- #166 Bump requestretry from 4.1.1 to 4.1.2
|
||||||
- #169 Bump typescript from 4.0.5 to 4.1.2
|
- #169 Bump typescript from 4.0.5 to 4.1.2
|
||||||
- #178 Bump @types/jest from 26.0.15 to 26.0.19
|
- #178 Bump @types/jest from 26.0.15 to 26.0.19
|
||||||
@@ -106,8 +106,7 @@ Codecov's Action supports inputs from the user. These inputs, along with their d
|
|||||||
| Input | Description | Required |
|
| Input | Description | Required |
|
||||||
| :--- | :--- | :---: |
|
| :--- | :--- | :---: |
|
||||||
| `binary` | The file location of a pre-downloaded version of the CLI. If specified, integrity checking will be bypassed. | Optional
|
| `binary` | The file location of a pre-downloaded version of the CLI. If specified, integrity checking will be bypassed. | Optional
|
||||||
| `codecov_yml_path` | The location of the codecov.yml file. This is crrently ONLY used for automated test selection (https://docs.codecov.com/docs/getting-started-with-ats). Note that for all other cases, the Codecov yaml will need to be locate
|
| `codecov_yml_path` | The location of the codecov.yml file. This is crrently ONLY used for automated test selection (https://docs.codecov.com/docs/getting-started-with-ats). Note that for all other cases, the Codecov yaml will need to be located as described here: https://docs.codecov.com/docs/codecov-yaml#can-i-name-the-file-codecovyml | Optional
|
||||||
d as described here: https://docs.codecov.com/docs/codecov-yaml#can-i-name-the-file-codecovyml | Optional
|
|
||||||
| `commit_parent` | SHA (with 40 chars) of what should be the parent of this commit. | Optional
|
| `commit_parent` | SHA (with 40 chars) of what should be the parent of this commit. | Optional
|
||||||
| `directory` | Folder to search for coverage files. Default to the current working directory | Optional
|
| `directory` | Folder to search for coverage files. Default to the current working directory | Optional
|
||||||
| `disable_file_fixes` | Disable file fixes to ignore common lines from coverage (e.g. blank lines or empty brackets). Read more here https://docs.codecov.com/docs/fixing-reports | Optional
|
| `disable_file_fixes` | Disable file fixes to ignore common lines from coverage (e.g. blank lines or empty brackets). Read more here https://docs.codecov.com/docs/fixing-reports | Optional
|
||||||
|
|||||||
@@ -28,6 +28,10 @@ inputs:
|
|||||||
description: 'Disable setting safe directory. Set to true to disable.'
|
description: 'Disable setting safe directory. Set to true to disable.'
|
||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: 'false'
|
||||||
|
disable_telem:
|
||||||
|
description: 'Disable sending telemetry data to Codecov. Set to true to disable.'
|
||||||
|
required: false
|
||||||
|
default: 'false'
|
||||||
dry_run:
|
dry_run:
|
||||||
description: "Don't upload files to Codecov"
|
description: "Don't upload files to Codecov"
|
||||||
required: false
|
required: false
|
||||||
@@ -254,6 +258,7 @@ runs:
|
|||||||
CC_DIR: ${{ inputs.directory }}
|
CC_DIR: ${{ inputs.directory }}
|
||||||
CC_DISABLE_FILE_FIXES: ${{ inputs.disable_file_fixes }}
|
CC_DISABLE_FILE_FIXES: ${{ inputs.disable_file_fixes }}
|
||||||
CC_DISABLE_SEARCH: ${{ inputs.disable_search }}
|
CC_DISABLE_SEARCH: ${{ inputs.disable_search }}
|
||||||
|
CC_DISABLE_TELEM: ${{ inputs.disable_telem }}
|
||||||
CC_DRY_RUN: ${{ inputs.dry_run }}
|
CC_DRY_RUN: ${{ inputs.dry_run }}
|
||||||
CC_ENTERPRISE_URL: ${{ inputs.url }}
|
CC_ENTERPRISE_URL: ${{ inputs.url }}
|
||||||
CC_ENV: ${{ inputs.env_vars }}
|
CC_ENV: ${{ inputs.env_vars }}
|
||||||
|
|||||||
+1
-1
Submodule src/scripts updated: 8e89f7cbab...b7950068a5
+1
-1
@@ -1 +1 @@
|
|||||||
5.1.1
|
5.1.2
|
||||||
|
|||||||
Reference in New Issue
Block a user