Update Gemfile to specify bundler version and modify GitHub Actions workflow for dependency installation

- Added a specific bundler version requirement to the Gemfile for compatibility.
- Removed bundler caching in the GitHub Actions workflow and installed the specified bundler version during the dependency installation step.
This commit is contained in:
Z. Cliffe Schreuders
2025-09-23 14:01:31 +01:00
parent 92fd4e6880
commit 94faa8280d
3 changed files with 5 additions and 289 deletions

View File

@@ -25,10 +25,11 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
bundler-cache: false
- name: Install dependencies
run: |
gem install bundler -v '~> 2.3.0'
bundle install
- name: Setup Pages