diff --git a/dist/index.js b/dist/index.js index d82a17d..8f55653 100644 --- a/dist/index.js +++ b/dist/index.js @@ -85350,6 +85350,9 @@ async function setupRuby(options = {}) { if (inputs['bundler-cache'] === 'true') { await common.time('bundle install', async () => bundler.bundleInstall(gemfile, lockFile, platform, engine, version, bundlerVersion, inputs['cache-version'])) + + await core.group(`Print lockfile`, async () => + await exec.exec('cat', [lockFile])) } core.setOutput('ruby-prefix', rubyPrefix) diff --git a/index.js b/index.js index 62e46fe..31c2ccc 100644 --- a/index.js +++ b/index.js @@ -99,6 +99,9 @@ export async function setupRuby(options = {}) { if (inputs['bundler-cache'] === 'true') { await common.time('bundle install', async () => bundler.bundleInstall(gemfile, lockFile, platform, engine, version, bundlerVersion, inputs['cache-version'])) + + await core.group(`Print lockfile`, async () => + await exec.exec('cat', [lockFile])) } core.setOutput('ruby-prefix', rubyPrefix)