Re-resolve Gemfile.lock for Ruby 4.0.1 compatibility #147
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| # All jobs are currently disabled. Uncomment a job below to enable it. | |
| placeholder: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: 'echo "CI jobs disabled"' | |
| # scan_ruby: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # - name: Set up Ruby | |
| # uses: ruby/setup-ruby@v1 | |
| # with: | |
| # ruby-version: .ruby-version | |
| # bundler-cache: true | |
| # - name: Scan for common Rails security vulnerabilities using static analysis | |
| # run: bin/brakeman --no-pager | |
| # scan_js: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # - name: Set up Ruby | |
| # uses: ruby/setup-ruby@v1 | |
| # with: | |
| # ruby-version: .ruby-version | |
| # bundler-cache: true | |
| # - name: Scan for security vulnerabilities in JavaScript dependencies | |
| # run: bin/importmap audit | |
| # lint: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # - name: Set up Ruby | |
| # uses: ruby/setup-ruby@v1 | |
| # with: | |
| # ruby-version: .ruby-version | |
| # bundler-cache: true | |
| # - name: Lint code for consistent style | |
| # run: bin/rubocop -f github | |