Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fb8b358

Browse filesBrowse files
chore(release): 7.0.0 (#1957)
Bump the wrapper submodule (src/scripts) to the latest main (bad8df5), which fetches the Codecov Uploader PGP key from the codecovsecops Keybase account, and cut a new major version. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent ca0a928 commit fb8b358
Copy full SHA for fb8b358

5 files changed

+18-8Lines changed: 18 additions & 8 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎Makefile‎

Copy file name to clipboard
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
deploy:
22
$(eval VERSION := $(shell cat src/version))
3-
git tag -d v6
4-
git push origin :v6
5-
git tag v6
3+
git tag -d v7
4+
git push origin :v7
5+
git tag v7
66
git tag v$(VERSION) -s -m ""
77
git push origin --tags
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Easily upload coverage reports to Codecov from GitHub Actions
88

9+
## v7 Release
10+
11+
`v7` of the Codecov GitHub Action bumps the [Codecov Wrapper](https://github.com/codecov/wrapper) submodule, which now fetches the Codecov Uploader PGP verification key from the `codecovsecops` Keybase account.
12+
913
## v6 Release
1014

1115
`v6` of the Codecov GitHub Action support node24
Collapse file

‎dist/codecov.sh‎

Copy file name to clipboardExpand all lines: dist/codecov.sh
+9-3Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ g="\033[0;32m" # info/debug
3737
r="\033[0;31m" # errors
3838
x="\033[0m"
3939
retry="--retry 5 --retry-delay 2"
40-
CC_WRAPPER_VERSION="0.2.7"
40+
CC_WRAPPER_VERSION="0.2.9"
4141
CC_VERSION="${CC_VERSION:-latest}"
4242
CC_FAIL_ON_ERROR="${CC_FAIL_ON_ERROR:-false}"
4343
CC_RUN_CMD="${CC_RUN_CMD:-upload-coverage}"
@@ -69,7 +69,13 @@ then
6969
exit_if_error "Could not install via pypi."
7070
exit
7171
fi
72-
CC_COMMAND="${CC_CLI_TYPE}"
72+
if [[ "$CC_CLI_TYPE" == "codecov-cli" ]]; then
73+
CC_COMMAND="codecovcli"
74+
elif [[ "$CC_CLI_TYPE" == "sentry-prevent-cli" ]]; then
75+
CC_COMMAND="sentry-prevent-cli"
76+
else
77+
CC_COMMAND="${CC_CLI_TYPE}"
78+
fi
7379
else
7480
if [ -n "$CC_OS" ];
7581
then
@@ -110,7 +116,7 @@ then
110116
chmod +x "$CC_COMMAND"
111117
fi
112118
else
113-
echo "$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)" | \
119+
echo "$(curl -s https://keybase.io/codecovsecops/pgp_keys.asc)" | \
114120
gpg --no-default-keyring --import
115121
# One-time step
116122
say "$g==>$x Verifying GPG signature integrity"
Collapse file

‎src/version‎

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.1
1+
7.0.0

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.