From 4b812409038d785be04b35b130b90c8713f16069 Mon Sep 17 00:00:00 2001 From: Daniel Azuma Date: Tue, 3 Sep 2024 19:45:13 -0700 Subject: [PATCH] tests: Update Ruby versions in the CI matrix (#491) --- .github/sync-repo-settings.yaml | 8 ++++---- .github/workflows/ci.yml | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/sync-repo-settings.yaml b/.github/sync-repo-settings.yaml index 9817d520..756d6928 100644 --- a/.github/sync-repo-settings.yaml +++ b/.github/sync-repo-settings.yaml @@ -6,13 +6,13 @@ branchProtectionRules: isAdminEnforced: false requiredStatusCheckContexts: - 'cla/google' - - 'CI (macos-latest, 3.2, test , spec)' - - 'CI (ubuntu-20.04, 2.7, test , spec)' + - 'CI (macos-latest, 3.3, test , spec)' - 'CI (ubuntu-20.04, 3.0, test , spec)' - 'CI (ubuntu-20.04, 3.1, test , spec)' - 'CI (ubuntu-22.04, 3.2, test , spec)' - - 'CI (ubuntu-latest, 3.2, rubocop , integration , build , yardoc , linkinator)' - - 'CI (windows-latest, 3.2, test , spec)' + - 'CI (ubuntu-latest, 3.3, rubocop , integration , build , yardoc , linkinator)' + - 'CI (ubuntu-latest, 3.3, test , spec)' + - 'CI (windows-latest, 3.3, test , spec)' requiredApprovingReviewCount: 1 requiresCodeOwnerReviews: true requiresStrictStatusChecks: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 28143d2c..3231a2fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,6 @@ jobs: strategy: matrix: include: - - os: ubuntu-20.04 - ruby: "2.7" - task: test , spec - os: ubuntu-20.04 ruby: "3.0" task: test , spec @@ -25,14 +22,17 @@ jobs: - os: ubuntu-22.04 ruby: "3.2" task: test , spec + - os: ubuntu-latest + ruby: "3.3" + task: test , spec - os: macos-latest - ruby: "3.2" + ruby: "3.3" task: test , spec - os: windows-latest - ruby: "3.2" + ruby: "3.3" task: test , spec - os: ubuntu-latest - ruby: "3.2" + ruby: "3.3" task: rubocop , integration , build , yardoc , linkinator fail-fast: false runs-on: ${{ matrix.os }}