Release 0.8.3

This commit is contained in:
github-actions 2024-05-20 20:31:25 +00:00
parent 06441bbdcd
commit 57947c1f02
7 changed files with 36 additions and 35 deletions

6
dist/post/index.js vendored
View file

@ -93931,7 +93931,7 @@ const falseTag = {
identify: value => value === false,
default: true,
tag: 'tag:yaml.org,2002:bool',
test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/i,
test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,
resolve: () => new Scalar.Scalar(false),
stringify: boolStringify
};
@ -96009,9 +96009,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 {