From fd734c24b69d48949105af062e3c7112d0e3ea76 Mon Sep 17 00:00:00 2001 From: Pierre Rioux Date: Tue, 11 Feb 2025 13:39:24 -0500 Subject: [PATCH] Adjusted GitHub action CI workflow Runner Ubuntu 20 is deprecated, and I needed to change the name of the gems cache key too. --- .github/workflows/cbrain_ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cbrain_ci.yaml b/.github/workflows/cbrain_ci.yaml index 5c980ceb3..98cf1feff 100644 --- a/.github/workflows/cbrain_ci.yaml +++ b/.github/workflows/cbrain_ci.yaml @@ -17,7 +17,7 @@ on: [ push, pull_request ] jobs: run-tests: name: Continuous Integration Tests - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 env: RAILS_ENV: test @@ -70,7 +70,7 @@ jobs: uses: actions/cache@v3 # speeds up 'Prepare Ruby Gems' below with: path: gem-cache - key: ${{ runner.os }}-gems-${{ hashFiles('*/Gemfile') }} + key: ubuntu-24-gems-${{ hashFiles('*/Gemfile') }} ########################################################### - name: Prepare Ruby Gems