diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index bf9e340..b489830 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -10,26 +10,26 @@ expeditor: timeout_in_minutes: 30 steps: -- label: run-lint-and-specs-ruby-2.7 +- label: run-lint-and-specs-ruby-3.0 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: - image: ruby:2.7-buster + image: ruby:3.0-buster -- label: run-lint-and-specs-ruby-3.0 +- label: run-lint-and-specs-ruby-3.1 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: - image: ruby:3.0-buster + image: ruby:3.1-buster -- label: run-lint-and-specs-ruby-3.1 +- label: run-lint-and-specs-ruby-3.3 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: - image: ruby:3.1-buster + image: ruby:3.3 diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 71a36f3..7fb2212 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ['2.7', '3.0', '3.1'] + ruby: ['3.1', '3.2', '3.3'] name: Chefstyle on Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2