File tree 2 files changed +4
-0
lines changed 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -66937,6 +66937,7 @@ async function restoreAsdfCache() {
66937
66937
return cache.restoreCache(paths, cacheKey, restoreKeys);
66938
66938
}
66939
66939
async function toolsInstall() {
66940
+ await setupAsdf();
66940
66941
if (await restoreAsdfCache()) {
66941
66942
core3.info("Cache restored, skipping asdf install");
66942
66943
return;
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import * as core from '@actions/core';
5
5
import * as exec from '@actions/exec' ;
6
6
import * as cache from '@actions/cache' ;
7
7
import { pluginsAdd } from '~/plugins-add/index.ts' ;
8
+ import { setupAsdf } from '~/setup/index.ts' ;
8
9
9
10
async function restoreAsdfCache ( ) {
10
11
/* eslint-disable-next-line no-warning-comments */
@@ -42,6 +43,8 @@ async function restoreAsdfCache() {
42
43
}
43
44
44
45
async function toolsInstall ( ) : Promise < void > {
46
+ await setupAsdf ( ) ;
47
+
45
48
if ( await restoreAsdfCache ( ) ) {
46
49
core . info ( 'Cache restored, skipping asdf install' ) ;
47
50
return ;
You can’t perform that action at this time.
0 commit comments