Skip to content

Commit

Permalink
💚 fix(ci): updated ruby version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly107 authored and mike-koala-bear committed Sep 22, 2024
1 parent 8022edc commit 6544c23
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,30 @@ jobs:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- name: Run security checks - brakeman
run: bundle exec brakeman
- name: Run security checks - rubocop
run: bundle exec rubocop --parallel -A
- name: Run security checks - bundler-audit
run: bundle exec bundler-audit --update
- name: Setup ruby dependencies
uses: ruby/setup-ruby-pkgs@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: 3.4.1
- name: Setup yarn dependencies | Configure yarn
run: |
yarn install --check-files
yarn test
yarn audit
yarn install
yarn install -p
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.1
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- name: Run security checks - brakeman
run: bundle exec brakeman
- name: Run security checks - rubocop
run: bundle exec rubocop --parallel -A
- name: Run security checks - bundler-audit
run: bundle exec bundler-audit --update
- name: Setup ruby dependencies
uses: ruby/setup-ruby-pkgs@v1
with:
ruby-version: 3.3.1
bundler-cache: true
rubygems: 3.4.1
- name: Setup yarn dependencies | Configure yarn
run: |
yarn install --check-files
yarn test
yarn audit
yarn install
yarn install -p

0 comments on commit 6544c23

Please sign in to comment.