From 44c94f13f26849785abb3fc349681200e46054f0 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 28 May 2024 11:28:31 +0200 Subject: [PATCH] Add Ruby 3.3 to CI matrix --- .github/workflows/ci.yml | 4 +++- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e36aeb..432a5e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Setup ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '3.0' + ruby-version: '3.3' - name: List examples id: list_examples run: .github/script/examples @@ -32,6 +32,7 @@ jobs: fail-fast: false matrix: ruby: + - '3.3' - '3.2' - '3.1' - '3.0' @@ -60,6 +61,7 @@ jobs: fail-fast: false matrix: ruby: + - '3.3' - '3.2' - '3.1' - '3.0' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a1767b..078b6cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,10 @@ jobs: if: github.repository_owner == 'voxpupuli' steps: - uses: actions/checkout@v4 - - name: Install Ruby 3.1 + - name: Install Ruby 3.3 uses: ruby/setup-ruby@v1 with: - ruby-version: '3.1' + ruby-version: '3.3' - name: Build gem run: gem build --strict --verbose *.gemspec - name: Publish gem to rubygems.org