From e1b0cc6cf0b4d227700f6098e1cb8994bed3c97a Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Fri, 25 Jul 2025 22:08:50 +0200 Subject: [PATCH] Revert "Add printing of the lockfile after installation" This reverts commit e8621f0b86851d7377d85882bb751b24dfadd958. --- dist/index.js | 3 --- index.js | 3 --- 2 files changed, 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 8f55653ad..d82a17d0d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -85350,9 +85350,6 @@ 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 31c2ccc80..62e46feb9 100644 --- a/index.js +++ b/index.js @@ -99,9 +99,6 @@ 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)