Invoke cleanup in analyze Action
This commit is contained in:
parent
4fd6c0d4f1
commit
0b4214972e
6 changed files with 32 additions and 11 deletions
14
lib/trap-caching.js
generated
14
lib/trap-caching.js
generated
|
|
@ -132,11 +132,17 @@ async function uploadTrapCaches(codeql, config, logger) {
|
|||
return true;
|
||||
}
|
||||
exports.uploadTrapCaches = uploadTrapCaches;
|
||||
async function cleanupTrapCaches(language, logger) {
|
||||
async function cleanupTrapCaches(config, logger) {
|
||||
if (!(await actionsUtil.isAnalyzingDefaultBranch()))
|
||||
return;
|
||||
try {
|
||||
const matchingCaches = await getTrapCachesForLanguage(language);
|
||||
for (const cache of matchingCaches) {
|
||||
logger.info(`Matched Actions cache ${JSON.stringify(cache)}`);
|
||||
for (const language of config.languages) {
|
||||
if (config.trapCaches[language]) {
|
||||
const matchingCaches = await getTrapCachesForLanguage(language);
|
||||
for (const cache of matchingCaches) {
|
||||
logger.info(`Matched Actions cache ${JSON.stringify(cache)}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue