File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ switch (platform) {
4545const baseCacheKey = `setup-bazel-${ cacheVersion } -${ cachePrefix } `
4646const bazelrc = core . getMultilineInput ( 'bazelrc' )
4747
48- const diskCacheEnabled = core . getInput ( 'disk-cache' )
48+ const diskCacheEnabled = core . getBooleanInput ( 'disk-cache' )
4949const maxDiskCacheSize = core . getInput ( 'max-disk-cache-size' )
5050if ( diskCacheEnabled ) {
5151 bazelrc . push ( `common --disk_cache=${ bazelDisk } ` )
5252}
5353
54- const repositoryCacheEnabled = core . getInput ( 'repository-cache' )
54+ const repositoryCacheEnabled = core . getBooleanInput ( 'repository-cache' )
5555const maxRepositoryCacheSize = core . getInput ( 'max-repository-cache-size' )
5656if ( repositoryCacheEnabled ) {
5757 bazelrc . push ( `common --repository_cache=${ bazelRepository } ` )
You can’t perform that action at this time.
0 commit comments