Make bazelisk in a tool cache available in the PATH (#19)

Fixes #17
This commit is contained in:
Alex Rodionov 2024-05-20 13:30:16 -07:00 committed by GitHub
parent 67f0a68f0e
commit 06441bbdcd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 15 deletions

View file

@ -79,9 +79,9 @@ async function saveCache(cacheConfig) {
{ followSymbolicLinks: false }
)
const key = `${config.baseCacheKey}-${cacheConfig.name}-${hash}`
console.log(`Attempting to save ${paths} cache to ${key}`)
core.debug(`Attempting to save ${paths} cache to ${key}`)
await cache.saveCache(paths, key)
console.log('Successfully saved cache')
core.info('Successfully saved cache')
} catch (error) {
core.warning(error.stack)
} finally {