mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 16:16:24 +00:00
Compare commits
8 Commits
th/do-not-
...
v5.0.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
288befbd10 | ||
|
|
7e69d37f7e | ||
|
|
985343d705 | ||
|
|
31d1900980 | ||
|
|
095cfe09c6 | ||
|
|
b542d5a35c | ||
|
|
05f5a9cfad | ||
|
|
28b3165f92 |
31
CHANGELOG.md
31
CHANGELOG.md
@@ -1,3 +1,32 @@
|
||||
## v5.0.5
|
||||
### What's Changed
|
||||
* chore(release): wrapper-0.0.27 by @app/codecov-releaser-app in https://github.com/codecov/codecov-action/pull/1685
|
||||
|
||||
|
||||
**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.0.4..v5.0.5
|
||||
|
||||
## v5.0.4
|
||||
### What's Changed
|
||||
* chore(deps): bump wrapper to 0.0.26 by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1681
|
||||
* fix: strip out a trailing \/n from input tokens by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1679
|
||||
* fix: add action version by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1678
|
||||
|
||||
|
||||
**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.0.3..v5.0.4
|
||||
|
||||
## v5.0.3
|
||||
### What's Changed
|
||||
* fix: update OIDC audience by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1675
|
||||
* fix: use double-quotes for OIDC by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1669
|
||||
* fix: prevent always setting tokenless to be true by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1673
|
||||
* fix: update CHANGELOG and automate by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1674
|
||||
* fix: bump to v5 and update README by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1655
|
||||
* build(deps): bump github/codeql-action from 3.27.0 to 3.27.4 by @app/dependabot in https://github.com/codecov/codecov-action/pull/1665
|
||||
* fix: typo in `inputs.disable_safe_directory` by @mkroening in https://github.com/codecov/codecov-action/pull/1666
|
||||
|
||||
|
||||
**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.0.2..v5.0.3
|
||||
|
||||
## v5.0.2
|
||||
### What's Changed
|
||||
* fix: override commit and pr values for PR cases by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1657
|
||||
@@ -935,4 +964,4 @@ for the full list.
|
||||
### Dependencies and Misc
|
||||
- #166 Bump requestretry from 4.1.1 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
|
||||
11
action.yml
11
action.yml
@@ -154,6 +154,11 @@ branding:
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Action version
|
||||
shell: bash
|
||||
run: |
|
||||
CC_ACTION_VERSION=$(cat ${GITHUB_ACTION_PATH}/src/version | grep 'CODECOV_ACTION_VERSION=' | cut -d\" -f2)
|
||||
echo -e "\033[0;32m==>\033[0m Running Action version $CC_ACTION_VERSION"
|
||||
- name: Set safe directory
|
||||
if: ${{ inputs.disable_safe_directory != 'true' }}
|
||||
shell: bash
|
||||
@@ -163,15 +168,15 @@ runs:
|
||||
- name: Get and set token
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ${{ inputs.use_oidc }} == 'true' ];
|
||||
if [ "${{ inputs.use_oidc }}" == 'true' ];
|
||||
then
|
||||
# {"count":1984,"value":"***"}
|
||||
CC_TOKEN=$(curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=api://AzureADTokenExchange" | cut -d\" -f6)
|
||||
CC_TOKEN=$(curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=https://codecov.io" | cut -d\" -f6)
|
||||
echo "CC_TOKEN=$CC_TOKEN" >> "$GITHUB_ENV"
|
||||
else
|
||||
if [ -n ${{ inputs.token }} ];
|
||||
then
|
||||
CC_TOKEN=${{ inputs.token }}
|
||||
CC_TOKEN=$(echo ${{ inputs.token }} | tr -d '\n')
|
||||
echo "CC_TOKEN=$CC_TOKEN" >> "$GITHUB_ENV"
|
||||
fi
|
||||
fi
|
||||
|
||||
19
changelog.py
19
changelog.py
@@ -15,14 +15,14 @@ def update_changelog():
|
||||
if previous == version:
|
||||
print(f"No changes to version {version}")
|
||||
return
|
||||
print(f"Adding logs from {previous}..{version}")
|
||||
print(f"Adding logs from {previous}..v{version}")
|
||||
|
||||
raw_current_branch = subprocess.run([
|
||||
"git",
|
||||
"branch",
|
||||
"--show-current",
|
||||
], capture_output=True)
|
||||
current_branch = raw_current_branch.stdout.decode('utf-8')
|
||||
current_branch = raw_current_branch.stdout.decode('utf-8').strip()
|
||||
|
||||
raw_commits = subprocess.run([
|
||||
"git",
|
||||
@@ -31,9 +31,12 @@ def update_changelog():
|
||||
"--oneline",
|
||||
], capture_output=True)
|
||||
commits = [line[:7] for line in raw_commits.stdout.decode('utf-8').split('\n')]
|
||||
print(commits)
|
||||
|
||||
prs = set()
|
||||
for commit in commits:
|
||||
if not commit:
|
||||
continue
|
||||
commit_output = subprocess.run([
|
||||
'gh',
|
||||
'pr',
|
||||
@@ -42,8 +45,16 @@ def update_changelog():
|
||||
'author,number,title,url',
|
||||
'--search',
|
||||
f'"{commit}"',
|
||||
'--state',
|
||||
'merged',
|
||||
], capture_output=True)
|
||||
commit_details = json.loads(commit_output.stdout.decode('utf-8'))[0]
|
||||
|
||||
commit_details = commit_output.stdout.decode('utf-8')
|
||||
if not commit_details or not json.loads(commit_details):
|
||||
continue
|
||||
commit_details = json.loads(commit_details)[0]
|
||||
|
||||
|
||||
if not commit_details['number']:
|
||||
continue
|
||||
if commit_details['number'] in prs:
|
||||
@@ -52,7 +63,7 @@ def update_changelog():
|
||||
changelog.append(f"* {commit_details['title']} by @{commit_details['author']['login']} in {commit_details['url']}")
|
||||
|
||||
changelog.append('\n')
|
||||
changelog.append(f"**Full Changelog**: https://github.com/codecov/codecov-action/compare/{previous}..{version}\n")
|
||||
changelog.append(f"**Full Changelog**: https://github.com/codecov/codecov-action/compare/{previous}..v{version}\n")
|
||||
|
||||
with open('CHANGELOG.md', 'r') as f:
|
||||
for line in f:
|
||||
|
||||
101
dist/codecov.sh
vendored
101
dist/codecov.sh
vendored
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
CC_WRAPPER_VERSION="0.0.24"
|
||||
CC_WRAPPER_VERSION="0.0.27"
|
||||
set +u
|
||||
say() {
|
||||
echo -e "$1"
|
||||
@@ -15,16 +15,22 @@ exit_if_error() {
|
||||
lower() {
|
||||
echo $(echo $1 | sed 's/CC//' | sed 's/_/-/g' | tr '[:upper:]' '[:lower:]')
|
||||
}
|
||||
write_existing_args() {
|
||||
if [ -n "$(eval echo \$$1)" ];
|
||||
k_arg() {
|
||||
if [ -n "$(eval echo \$"CC_$1")" ];
|
||||
then
|
||||
echo " -$(lower "$1") $(eval echo \$$1)"
|
||||
echo "--$(lower "$1")"
|
||||
fi
|
||||
}
|
||||
v_arg() {
|
||||
if [ -n "$(eval echo \$"CC_$1")" ];
|
||||
then
|
||||
echo "$(eval echo \$"CC_$1")"
|
||||
fi
|
||||
}
|
||||
write_truthy_args() {
|
||||
if [ "$(eval echo \$$1)" = "true" ] || [ "$(eval echo \$$1)" = "1" ];
|
||||
then
|
||||
echo " -$(lower $1)"
|
||||
echo "-$(lower $1)"
|
||||
fi
|
||||
}
|
||||
b="\033[0;36m" # variables/constants
|
||||
@@ -115,77 +121,80 @@ CC_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)
|
||||
say
|
||||
fi
|
||||
cc_cli_args=()
|
||||
cc_cli_args+=( $(write_existing_args CC_AUTO_LOAD_PARAMS_FROM) )
|
||||
cc_cli_args+=( $(write_existing_args CC_ENTERPRISE_URL) )
|
||||
cc_cli_args+=( $(write_existing_args CC_YML_PATH) )
|
||||
cc_cli_args+=( $(k_arg AUTO_LOAD_PARAMS_FROM) $(v_arg AUTO_LOAD_PARAMS_FROM))
|
||||
cc_cli_args+=( $(k_arg ENTERPRISE_URL) $(v_arg ENTERPRISE_URL))
|
||||
cc_cli_args+=( $(k_arg YML_PATH) $(v_arg YML_PATH))
|
||||
cc_cli_args+=( $(write_truthy_args CC_VERBOSE) )
|
||||
cc_cc_args=()
|
||||
cc_cc_args+=( $(write_truthy_args CC_FAIL_ON_ERROR) )
|
||||
cc_cc_args+=( $(write_existing_args CC_GIT_SERVICE) )
|
||||
cc_cc_args+=( $(write_existing_args CC_PARENT_SHA) )
|
||||
cc_cc_args+=( $(write_existing_args CC_PR) )
|
||||
cc_cc_args+=( $(write_existing_args CC_SHA) )
|
||||
cc_cc_args+=( $(write_existing_args CC_SLUG) )
|
||||
cc_cc_args+=( $(k_arg GIT_SERVICE) $(v_arg GIT_SERVICE))
|
||||
cc_cc_args+=( $(k_arg PARENT_SHA) $(v_arg PARENT_SHA))
|
||||
cc_cc_args+=( $(k_arg PR) $(v_arg PR))
|
||||
cc_cc_args+=( $(k_arg SHA) $(v_arg SHA))
|
||||
cc_cc_args+=( $(k_arg SLUG) $(v_arg SLUG))
|
||||
cc_create_report_args=()
|
||||
cc_cr_args+=( $(write_existing_args CC_CODE) )
|
||||
cc_cr_args+=( $(k_arg CODE) $(v_arg CODE))
|
||||
cc_cr_args+=( $(write_truthy_args CC_FAIL_ON_ERROR) )
|
||||
cc_cr_args+=( $(write_existing_args CC_GIT_SERVICE) )
|
||||
cc_cr_args+=( $(write_existing_args CC_PR) )
|
||||
cc_cr_args+=( $(write_existing_args CC_SHA) )
|
||||
cc_cr_args+=( $(write_existing_args CC_SLUG) )
|
||||
cc_cr_args+=( $(k_arg GIT_SERVICE) $(v_arg GIT_SERVICE))
|
||||
cc_cr_args+=( $(k_arg PR) $(v_arg PR))
|
||||
cc_cr_args+=( $(k_arg SHA) $(v_arg SHA))
|
||||
cc_cr_args+=( $(k_arg SLUG) $(v_arg SLUG))
|
||||
cc_du_args=()
|
||||
cc_du_args+=( $(write_existing_args CC_ENV) )
|
||||
cc_du_args+=( $(k_arg ENV) $(v_arg ENV))
|
||||
OLDIFS=$IFS;IFS=,
|
||||
cc_du_args+=( $(write_existing_args CC_BRANCH) )
|
||||
cc_du_args+=( $(write_existing_args CC_BUILD) )
|
||||
cc_du_args+=( $(write_existing_args CC_BUILD_URL) )
|
||||
cc_du_args+=( $(write_existing_args CC_CODE) )
|
||||
cc_du_args+=( $(write_existing_args CC_DIR) )
|
||||
cc_du_args+=( $(k_arg BRANCH) $(v_arg BRANCH))
|
||||
cc_du_args+=( $(k_arg BUILD) $(v_arg BUILD))
|
||||
cc_du_args+=( $(k_arg BUILD_URL) $(v_arg BUILD_URL))
|
||||
cc_du_args+=( $(k_arg CODE) $(v_arg CODE))
|
||||
cc_du_args+=( $(k_arg DIR) $(v_arg DIR))
|
||||
cc_du_args+=( $(write_truthy_args CC_DISABLE_FILE_FIXES) )
|
||||
cc_du_args+=( $(write_truthy_args CC_DISABLE_SEARCH) )
|
||||
cc_du_args+=( $(write_truthy_args CC_DRY_RUN) )
|
||||
if [ -n "$CC_EXCLUDES" ];
|
||||
then
|
||||
for directory in $CC_EXCLUDES; do
|
||||
cc_du_args+=( " --exclude " "$directory" )
|
||||
cc_du_args+=( "--exclude" "$directory" )
|
||||
done
|
||||
fi
|
||||
cc_du_args+=( $(write_truthy_args CC_FAIL_ON_ERROR) )
|
||||
if [ -n "$CC_FILES" ];
|
||||
then
|
||||
for file in $CC_FILES; do
|
||||
cc_du_args+=( " --file " "$file" )
|
||||
cc_du_args+=( "--file" "$file" )
|
||||
done
|
||||
fi
|
||||
if [ -n "$CC_FLAGS" ];
|
||||
then
|
||||
for flag in $CC_FLAGS; do
|
||||
cc_du_args+=( " --flag " "$flag" )
|
||||
cc_du_args+=( "--flag" "$flag" )
|
||||
done
|
||||
fi
|
||||
cc_du_args+=( $(write_existing_args CC_GCOV_ARGS) )
|
||||
cc_du_args+=( $(write_existing_args CC_GCOV_EXECUTABLE) )
|
||||
cc_du_args+=( $(write_existing_args CC_GCOV_IGNORE) )
|
||||
cc_du_args+=( $(write_existing_args CC_GCOV_INCLUDE) )
|
||||
cc_du_args+=( $(write_existing_args CC_GIT_SERVICE) )
|
||||
cc_du_args+=( $(k_arg GCOV_ARGS) $(v_arg GCOV_ARGS))
|
||||
cc_du_args+=( $(k_arg GCOV_EXECUTABLE) $(v_arg GCOV_EXECUTABLE))
|
||||
cc_du_args+=( $(k_arg GCOV_IGNORE) $(v_arg GCOV_IGNORE))
|
||||
cc_du_args+=( $(k_arg GCOV_INCLUDE) $(v_arg GCOV_INCLUDE))
|
||||
cc_du_args+=( $(k_arg GIT_SERVICE) $(v_arg GIT_SERVICE))
|
||||
cc_du_args+=( $(write_truthy_args CC_HANDLE_NO_REPORTS_FOUND) )
|
||||
cc_du_args+=( $(write_existing_args CC_JOB_CODE) )
|
||||
cc_du_args+=( $(k_arg JOB_CODE) $(v_arg JOB_CODE))
|
||||
cc_du_args+=( $(write_truthy_args CC_LEGACY) )
|
||||
cc_du_args+=( $(write_existing_args CC_NAME) )
|
||||
cc_du_args+=( $(write_existing_args CC_NETWORK_FILTER) )
|
||||
cc_du_args+=( $(write_existing_args CC_NETWORK_PREFIX) )
|
||||
cc_du_args+=( $(write_existing_args CC_NETWORK_ROOT_FOLDER) )
|
||||
if [ -n "$CC_NAME" ];
|
||||
then
|
||||
cc_du_args+=( "--name" "$CC_NAME" )
|
||||
fi
|
||||
cc_du_args+=( $(k_arg NETWORK_FILTER) $(v_arg NETWORK_FILTER))
|
||||
cc_du_args+=( $(k_arg NETWORK_PREFIX) $(v_arg NETWORK_PREFIX))
|
||||
cc_du_args+=( $(k_arg NETWORK_ROOT_FOLDER) $(v_arg NETWORK_ROOT_FOLDER))
|
||||
if [ -n "$CC_PLUGINS" ];
|
||||
then
|
||||
for plugin in $CC_PLUGINS; do
|
||||
cc_du_args+=( " --plugin " "$plugin" )
|
||||
cc_du_args+=( "--plugin" "$plugin" )
|
||||
done
|
||||
fi
|
||||
cc_du_args+=( $(write_existing_args CC_PR) )
|
||||
cc_du_args+=( $(write_existing_args CC_REPORT_TYPE) )
|
||||
cc_du_args+=( $(write_existing_args CC_SHA) )
|
||||
cc_du_args+=( $(write_existing_args CC_SLUG) )
|
||||
cc_du_args+=( $(write_existing_args CC_SWIFT_PROJECT) )
|
||||
cc_du_args+=( $(k_arg PR) $(v_arg PR))
|
||||
cc_du_args+=( $(k_arg REPORT_TYPE) $(v_arg REPORT_TYPE))
|
||||
cc_du_args+=( $(k_arg SHA) $(v_arg SHA))
|
||||
cc_du_args+=( $(k_arg SLUG) $(v_arg SLUG))
|
||||
cc_du_args+=( $(k_arg SWIFT_PROJECT) $(v_arg SWIFT_PROJECT))
|
||||
IFS=$OLDIFS
|
||||
unset NODE_OPTIONS
|
||||
# See https://github.com/codecov/uploader/issues/475
|
||||
@@ -210,7 +219,7 @@ if ! ./$cc_filename \
|
||||
${cc_cli_args[*]} \
|
||||
create-commit \
|
||||
${token_arg[*]} \
|
||||
${cc_cc_args[*]};
|
||||
"${cc_cc_args[@]}";
|
||||
then
|
||||
exit_if_error "Failed to create-commit"
|
||||
fi
|
||||
@@ -221,7 +230,7 @@ if ! ./$cc_filename \
|
||||
${cc_cli_args[*]} \
|
||||
create-report \
|
||||
${token_arg[*]} \
|
||||
${cc_cr_args[*]};
|
||||
"${cc_cr_args[@]}";
|
||||
then
|
||||
exit_if_error "Failed to create-report"
|
||||
fi
|
||||
@@ -232,7 +241,7 @@ if ! ./$cc_filename \
|
||||
${cc_cli_args[*]} \
|
||||
do-upload \
|
||||
${token_arg[*]} \
|
||||
${cc_du_args[*]};
|
||||
"${cc_du_args[@]}";
|
||||
then
|
||||
exit_if_error "Failed to upload"
|
||||
fi
|
||||
|
||||
@@ -9,3 +9,5 @@ git diff --cached --name-only | if grep --quiet "src/version"
|
||||
then
|
||||
python changelog.py
|
||||
fi
|
||||
|
||||
git add CHANGELOG.md
|
||||
|
||||
Submodule src/scripts updated: 25f50b4c5b...09d9636ebe
@@ -1 +1 @@
|
||||
CODECOV_ACTION_VERSION="5.0.2"
|
||||
CODECOV_ACTION_VERSION="5.0.5"
|
||||
|
||||
Reference in New Issue
Block a user