From 7677d050042446144926c89cca1ae87d6e3da76d Mon Sep 17 00:00:00 2001 From: nikhil2611 Date: Mon, 17 Jun 2024 17:42:58 +0530 Subject: [PATCH] updated the ruby version for unit test cases and chefstyle Signed-off-by: nikhil2611 --- .expeditor/verify.pipeline.yml | 12 ++++++------ .github/workflows/linters.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) 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