diff --git a/.github/workflows/exec.yml b/.github/workflows/exec.yml index 49a505792..cf56577f6 100644 --- a/.github/workflows/exec.yml +++ b/.github/workflows/exec.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: ['macos-latest', 'ubuntu-latest', 'windows-latest'] - ruby: ['2.7', '3.0'] + ruby: ['3.0'] name: Exec Ohai on ${{ matrix.os }} with Ruby ${{ matrix.ruby }} runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 80173c7b4..332e1bbe2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 + ruby-version: 3.0 bundler-cache: true - uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR - run: bundle exec chefstyle diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 5d4b02eb0..519f396fc 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] - ruby: ['2.7', '3.0'] + ruby: ['3.0'] name: Unit test on ${{ matrix.os }} with Ruby ${{ matrix.ruby }} runs-on: ${{ matrix.os }} steps: