mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
Bump to 2.0.2
This commit is contained in:
parent
f2242e1815
commit
6ab08a75e2
6 changed files with 13 additions and 8 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
## 2.0.2
|
||||||
|
### Fixes
|
||||||
|
- Underlying uploader fixes issues with tokens not being sent properly for users seeing
|
||||||
|
`Error!: Error: Error uploading to https://codecov.io: Error: Error uploading to Codecov: Error: Not Found`
|
||||||
|
|
||||||
## 2.0.1
|
## 2.0.1
|
||||||
### Fixes
|
### Fixes
|
||||||
- #424 fix: Issue in building all deep dependencies
|
- #424 fix: Issue in building all deep dependencies
|
||||||
|
|
|
||||||
6
dist/index.js
vendored
6
dist/index.js
vendored
|
|
@ -12849,7 +12849,7 @@ var core = __nccwpck_require__(2186);
|
||||||
// EXTERNAL MODULE: ./node_modules/@actions/github/lib/github.js
|
// EXTERNAL MODULE: ./node_modules/@actions/github/lib/github.js
|
||||||
var github = __nccwpck_require__(5438);
|
var github = __nccwpck_require__(5438);
|
||||||
;// CONCATENATED MODULE: ./package.json
|
;// CONCATENATED MODULE: ./package.json
|
||||||
const package_namespaceObject = {"i8":"2.0.1"};
|
const package_namespaceObject = {"i8":"2.0.2"};
|
||||||
;// CONCATENATED MODULE: ./src/buildExec.ts
|
;// CONCATENATED MODULE: ./src/buildExec.ts
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -13070,8 +13070,8 @@ const verify = (filename) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
}).on('end', () => __awaiter(void 0, void 0, void 0, function* () {
|
}).on('end', () => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const hash = `${uploaderSha.digest('hex')} ${uploaderName}`;
|
const hash = `${uploaderSha.digest('hex')} ${uploaderName}`;
|
||||||
if (hash !== shasum) {
|
if (hash !== shasum) {
|
||||||
setFailure('Codecov: Uploader shasum does not match ' +
|
setFailure('Codecov: Uploader shasum does not match\n' +
|
||||||
`uploader hash: ${hash}, public hash: ${shasum}`, true);
|
`uploader hash: ${hash}\npublic hash: ${shasum}`, true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.info('==> Uploader SHASUM verified');
|
core.info('==> Uploader SHASUM verified');
|
||||||
|
|
|
||||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "codecov-action",
|
"name": "codecov-action",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "codecov-action",
|
"name": "codecov-action",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -54,8 +54,8 @@ const verify = async (filename: string) => {
|
||||||
const hash = `${uploaderSha.digest('hex')} ${uploaderName}`;
|
const hash = `${uploaderSha.digest('hex')} ${uploaderName}`;
|
||||||
if (hash !== shasum) {
|
if (hash !== shasum) {
|
||||||
setFailure(
|
setFailure(
|
||||||
'Codecov: Uploader shasum does not match ' +
|
'Codecov: Uploader shasum does not match\n' +
|
||||||
`uploader hash: ${hash}, public hash: ${shasum}`,
|
`uploader hash: ${hash}\npublic hash: ${shasum}`,
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue