From b0de18c2e516d354fef475ded9f774bc91fa81fb Mon Sep 17 00:00:00 2001 From: fraxy-v <65565042+fraxy-v@users.noreply.github.com> Date: Sat, 31 Aug 2024 14:38:38 +0300 Subject: [PATCH] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 8180c78..d6bc2c3 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -101,7 +101,7 @@ jobs: var parseString = require('xml2js').parseString; function requestReport(callback) { - fs.readFile('./response.xml', 'utf8', function(err, data) { + fs.readFile('coverage.xml', 'utf8', function(err, data) { if (err) return callback(err); parseString(data, callback); });