13
0
Fork 0
mirror of https://github.com/jdx/mise-action.git synced 2026-07-01 01:00:44 +00:00

fix: preserve default install cache keys

This commit is contained in:
default 2026-06-17 02:08:37 +00:00
parent 9e6fefeffb
commit a1e02f3a39
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View file

@ -89821,7 +89821,7 @@ async function processCacheKeyTemplate(template) {
}
}
let bootstrapHash = '';
if (bootstrap || bootstrapSkip || bootstrapArgs) {
if (bootstrap === 'true' || bootstrapSkip || bootstrapArgs) {
bootstrapHash = crypto$1
.createHash('sha256')
.update([bootstrap, bootstrapSkip, bootstrapArgs].join('\0'))

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View file

@ -745,7 +745,7 @@ async function processCacheKeyTemplate(template: string): Promise<string> {
}
let bootstrapHash = ''
if (bootstrap || bootstrapSkip || bootstrapArgs) {
if (bootstrap === 'true' || bootstrapSkip || bootstrapArgs) {
bootstrapHash = crypto
.createHash('sha256')
.update([bootstrap, bootstrapSkip, bootstrapArgs].join('\0'))