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:
parent
9e6fefeffb
commit
a1e02f3a39
3 changed files with 3 additions and 3 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
|
@ -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
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
|
|
@ -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'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue