File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -68387,11 +68387,11 @@ async function main() {
68387
68387
68388
68388
// Download the archive containing the binaries
68389
68389
const download = getDownloadObject(version);
68390
- console.log (`Downloading Foundry '${version}' from: ${download.url}`);
68390
+ core.info (`Downloading Foundry '${version}' from: ${download.url}`);
68391
68391
const pathToArchive = await toolCache.downloadTool(download.url);
68392
68392
68393
68393
// Extract the archive onto host runner
68394
- console.log (`Extracting ${pathToArchive}`);
68394
+ core.debug (`Extracting ${pathToArchive}`);
68395
68395
const extract = download.url.endsWith(".zip") ? toolCache.extractZip : toolCache.extractTar;
68396
68396
const pathToCLI = await extract(pathToArchive);
68397
68397
@@ -68403,7 +68403,7 @@ async function main() {
68403
68403
68404
68404
if (cache) {
68405
68405
// Restore the RPC cache, if any.
68406
- restoreRPCCache();
68406
+ await restoreRPCCache();
68407
68407
}
68408
68408
} catch (err) {
68409
68409
core.setFailed(err);
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ async function main() {
12
12
13
13
// Download the archive containing the binaries
14
14
const download = getDownloadObject ( version ) ;
15
- console . log ( `Downloading Foundry '${ version } ' from: ${ download . url } ` ) ;
15
+ core . info ( `Downloading Foundry '${ version } ' from: ${ download . url } ` ) ;
16
16
const pathToArchive = await toolCache . downloadTool ( download . url ) ;
17
17
18
18
// Extract the archive onto host runner
19
- console . log ( `Extracting ${ pathToArchive } ` ) ;
19
+ core . debug ( `Extracting ${ pathToArchive } ` ) ;
20
20
const extract = download . url . endsWith ( ".zip" ) ? toolCache . extractZip : toolCache . extractTar ;
21
21
const pathToCLI = await extract ( pathToArchive ) ;
22
22
@@ -28,7 +28,7 @@ async function main() {
28
28
29
29
if ( cache ) {
30
30
// Restore the RPC cache, if any.
31
- restoreRPCCache ( ) ;
31
+ await restoreRPCCache ( ) ;
32
32
}
33
33
} catch ( err ) {
34
34
core . setFailed ( err ) ;
You can’t perform that action at this time.
0 commit comments