portagenetwork / roadmap

Developed by the the Alliance in collaboration with University of Alberta, DMP Assistant a data management planning tool, forking the DMP Roadmap codebase
MIT License
6 stars 1 forks source link

Bump Ruby to v3.1.4 #808

Closed aaronskiba closed 1 week ago

aaronskiba commented 1 week ago

Changes proposed in this PR:

aaronskiba commented 1 week ago

The following explains how some of the changes to .github/workflows/danger.yml, .github/workflows/postgres.yml, and .github/workflows/ruby.yml are possible:

https://github.com/ruby/setup-ruby?tab=readme-ov-file#caching-bundle-install-automatically

Caching bundle install automatically This action provides a way to automatically run bundle install and cache the result:

    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true

Note that any step doing bundle install (for the root Gemfile) or gem install bundler can be removed with bundler-cache: true.