Skip to content

Commit 6ab08a7

Browse files
committed
Bump to 2.0.2
1 parent f2242e1 commit 6ab08a7

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.0.2
2+
### Fixes
3+
- Underlying uploader fixes issues with tokens not being sent properly for users seeing
4+
`Error!: Error: Error uploading to https://codecov.io: Error: Error uploading to Codecov: Error: Not Found`
5+
16
## 2.0.1
27
### Fixes
38
- #424 fix: Issue in building all deep dependencies

dist/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -12849,7 +12849,7 @@ var core = __nccwpck_require__(2186);
1284912849
// EXTERNAL MODULE: ./node_modules/@actions/github/lib/github.js
1285012850
var github = __nccwpck_require__(5438);
1285112851
;// CONCATENATED MODULE: ./package.json
12852-
const package_namespaceObject = {"i8":"2.0.1"};
12852+
const package_namespaceObject = {"i8":"2.0.2"};
1285312853
;// CONCATENATED MODULE: ./src/buildExec.ts
1285412854

1285512855

@@ -13070,8 +13070,8 @@ const verify = (filename) => __awaiter(void 0, void 0, void 0, function* () {
1307013070
}).on('end', () => __awaiter(void 0, void 0, void 0, function* () {
1307113071
const hash = `${uploaderSha.digest('hex')} ${uploaderName}`;
1307213072
if (hash !== shasum) {
13073-
setFailure('Codecov: Uploader shasum does not match ' +
13074-
`uploader hash: ${hash}, public hash: ${shasum}`, true);
13073+
setFailure('Codecov: Uploader shasum does not match\n' +
13074+
`uploader hash: ${hash}\npublic hash: ${shasum}`, true);
1307513075
}
1307613076
else {
1307713077
core.info('==> Uploader SHASUM verified');

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codecov-action",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Upload coverage reports to Codecov from GitHub Actions",
55
"main": "index.js",
66
"scripts": {

src/validate.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ const verify = async (filename: string) => {
5454
const hash = `${uploaderSha.digest('hex')} ${uploaderName}`;
5555
if (hash !== shasum) {
5656
setFailure(
57-
'Codecov: Uploader shasum does not match ' +
58-
`uploader hash: ${hash}, public hash: ${shasum}`,
57+
'Codecov: Uploader shasum does not match\n' +
58+
`uploader hash: ${hash}\npublic hash: ${shasum}`,
5959
true,
6060
);
6161
} else {

0 commit comments

Comments
 (0)