From caf1eedc681380ed36479206ecb74cdae6d1efeb Mon Sep 17 00:00:00 2001 From: CataRC888 <131907052+CataRC888@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:18:43 +0100 Subject: [PATCH] Update jekyll.yml v13 --- .github/workflows/jekyll.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 8d722b4..0241ca0 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -24,18 +24,16 @@ jobs: which ruby # This will show the full path of the ruby executable being used - # Update RubyGems to the required version (>= 3.3.22) - - name: Update RubyGems + # Clear bundler cache to ensure fresh gems are installed + - name: Clear Bundler Cache run: | - gem update --system 3.3.22 + bundle cache clean --all - # Install bundler - - name: Install Bundler - run: gem install bundler - - # Install dependencies + # Install dependencies (this will regenerate Gemfile.lock) - name: Install dependencies - run: bundle install + run: | + gem install bundler + bundle install --no-cache - uses: helaili/jekyll-action@v2 with: