Skip to content

Commit

Permalink
Adjusted GitHub action CI workflow
Browse files Browse the repository at this point in the history
Runner Ubuntu 20 is deprecated, and I needed to
change the name of the gems cache key too.
  • Loading branch information
prioux committed Feb 11, 2025
1 parent b7a9155 commit fd734c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cbrain_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit fd734c2

Please sign in to comment.