.github/workflows/ci.yml in grape-entity-1.0.0 vs .github/workflows/ci.yml in grape-entity-1.0.1

- old
+ new

@@ -13,26 +13,26 @@ jobs: rubocop: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: '3.2' + ruby-version: '3.0' bundler-cache: true - name: Run rubocop run: bundle exec rubocop --parallel --format progress rspec: runs-on: ubuntu-latest needs: ['rubocop'] strategy: matrix: - ruby-version: ['3.0', '3.1', '3.2', 'head'] + ruby-version: ['3.0', '3.1', '3.2', '3.3', 'head'] steps: - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true