mirror of
https://github.com/codecov/codecov-action
synced 2026-09-14 20:13:46 +00:00
replace set fail with warning
This commit is contained in:
Vendored
+2
-2
@@ -332,7 +332,7 @@ try {
|
|||||||
],
|
],
|
||||||
options
|
options
|
||||||
).catch((err)=>{
|
).catch((err)=>{
|
||||||
core.setFailed(`Codecov failed with the following error ${err}`);
|
core.warning(`Codecov encountered the following error: ${err}`);
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
unlinkFile();
|
unlinkFile();
|
||||||
@@ -377,7 +377,7 @@ try {
|
|||||||
],
|
],
|
||||||
options
|
options
|
||||||
).catch((err)=>{
|
).catch((err)=>{
|
||||||
core.setFailed(`Codecov failed with the following error ${err}`);
|
core.warning(`Codecov encountered the following error: ${err}`);
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
unlinkFile();
|
unlinkFile();
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ try {
|
|||||||
],
|
],
|
||||||
options
|
options
|
||||||
).catch((err)=>{
|
).catch((err)=>{
|
||||||
core.setFailed(`Codecov failed with the following error ${err}`);
|
core.warning(`Codecov encountered the following error: ${err}`);
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
unlinkFile();
|
unlinkFile();
|
||||||
@@ -114,7 +114,7 @@ try {
|
|||||||
],
|
],
|
||||||
options
|
options
|
||||||
).catch((err)=>{
|
).catch((err)=>{
|
||||||
core.setFailed(`Codecov failed with the following error ${err}`);
|
core.warning(`Codecov encountered the following error: ${err}`);
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
unlinkFile();
|
unlinkFile();
|
||||||
|
|||||||
Reference in New Issue
Block a user