Commit 9418ea7 1 parent 090f970 commit 9418ea7 Copy full SHA for 9418ea7
File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ export default async (options: Input): Promise<Output> => {
89
89
info ( `Downloading a new version of Bun: ${ url } ` ) ;
90
90
// TODO: remove this, temporary fix for https://github.com/oven-sh/setup-bun/issues/73
91
91
revision = await retry ( async ( ) => await downloadBun ( url , bunPath ) , 3 ) ;
92
+ console . log ( "Downloaded Bun revision: " + revision ) ;
92
93
}
93
94
94
95
if ( ! revision ) {
@@ -106,7 +107,9 @@ export default async (options: Input): Promise<Output> => {
106
107
url,
107
108
} ;
108
109
110
+ console . log ( "Saving cache state: " + JSON . stringify ( cacheState ) ) ;
109
111
saveState ( "cache" , JSON . stringify ( cacheState ) ) ;
112
+ console . log ( "Saved cache state: " + JSON . stringify ( cacheState ) ) ;
110
113
111
114
return {
112
115
version,
You can’t perform that action at this time.
0 commit comments