From 9b6d1f84bde660b0f784003009b1f0aa4663cdeb Mon Sep 17 00:00:00 2001 From: maxweng-sentry Date: Tue, 11 Nov 2025 14:37:52 -0800 Subject: [PATCH 1/3] check gpg only when skip-validation = false (#1894) --- action.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 93adcd27c..fbb6e73bf 100644 --- a/action.yml +++ b/action.yml @@ -180,13 +180,20 @@ runs: run: | missing_deps="" - # Check for required commands - for cmd in bash git curl gpg; do + # Check for always-required commands + for cmd in bash git curl; do if ! command -v "$cmd" >/dev/null 2>&1; then missing_deps="$missing_deps $cmd" fi done + # Check for gpg only if validation is not being skipped + if [ "${{ inputs.skip_validation }}" != "true" ]; then + if ! command -v gpg >/dev/null 2>&1; then + missing_deps="$missing_deps gpg" + fi + fi + # Report missing required dependencies if [ -n "$missing_deps" ]; then echo "Error: The following required dependencies are missing:$missing_deps" From 96b38e9e60ee60a8c3911f4612407bba2f9195fb Mon Sep 17 00:00:00 2001 From: Miguel Angel Rojo <29736144+freemanzMrojo@users.noreply.github.com> Date: Wed, 19 Nov 2025 13:34:32 +0000 Subject: [PATCH 2/3] chore: `disable_search` alignment (#1881) chore: disable_search alignment --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c5853ecee..c0d3744da 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Codecov's Action supports inputs from the user. These inputs, along with their d | `env_vars` | Environment variables to tag the upload with (e.g. PYTHON \| OS,PYTHON) | Optional | `exclude` | Comma-separated list of folders to exclude from search. | Optional | `fail_ci_if_error` | On error, exit with non-zero code | Optional -| `files` | Comma-separated explicit list of files to upload. These will be added to the coverage files found for upload. If you wish to only upload the specified files, please consider using "disable-search" to disable uploading other files. | Optional +| `files` | Comma-separated explicit list of files to upload. These will be added to the coverage files found for upload. If you wish to only upload the specified files, please consider using "disable_search" to disable uploading other files. | Optional | `flags` | Comma-separated list of flags to upload to group coverage metrics. | Optional | `force` | Only used for empty-upload run command | Optional | `git_service` | Override the git_service (e.g. github_enterprise) | Optional diff --git a/action.yml b/action.yml index fbb6e73bf..54c81958f 100644 --- a/action.yml +++ b/action.yml @@ -50,7 +50,7 @@ inputs: required: false default: 'false' files: - description: 'Comma-separated list of explicit files to upload. These will be added to the coverage files found for upload. If you wish to only upload the specified files, please consider using disable-search to disable uploading other files.' + description: 'Comma-separated list of explicit files to upload. These will be added to the coverage files found for upload. If you wish to only upload the specified files, please consider using disable_search to disable uploading other files.' required: false flags: description: 'Comma-separated list of flags to upload to group coverage metrics.' From 671740ac38dd9b0130fbe1cec585b89eea48d3de Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 10 Dec 2025 03:20:06 +0800 Subject: [PATCH 3/3] chore(release): 5.5.2 (#1902) --- CHANGELOG.md | 8 ++++++++ src/version | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfcc56194..20917112f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v5.5.2 + +### What's Changed + + +**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2 + + ## v5.5.1 ### What's Changed diff --git a/src/version b/src/version index 7acd1cb0e..e4d41db98 100644 --- a/src/version +++ b/src/version @@ -1 +1 @@ -5.5.1 +5.5.2