From 8f59fd0fe6a372daaf977ecf3499681ecab7ac93 Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Thu, 8 Jul 2021 21:38:03 +0900 Subject: [PATCH] Bump Ruby versions to 3.0.2, 2.7.4 and 2.6.8 * Ruby 3.0.2 Released https://www.ruby-lang.org/en/news/2021/07/07/ruby-3-0-2-released/ * Ruby 2.7.4 Released https://www.ruby-lang.org/en/news/2021/07/07/ruby-2-7-4-released/ * Ruby 2.6.8 Released https://www.ruby-lang.org/en/news/2021/07/07/ruby-2-6-8-released/ --- .github/workflows/cronjob.yml | 12 ++++++------ .github/workflows/test.yml | 32 ++++++++++++++++---------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/cronjob.yml b/.github/workflows/cronjob.yml index 8c08f13..2a7397b 100644 --- a/.github/workflows/cronjob.yml +++ b/.github/workflows/cronjob.yml @@ -11,8 +11,8 @@ jobs: fail-fast: false matrix: ruby: - - 3.0.1 - - 2.7.3 + - 3.0.2 + - 2.7.4 env: DB: sqlite3 RAILS: main @@ -33,8 +33,8 @@ jobs: fail-fast: false matrix: ruby: - - 3.0.1 - - 2.7.3 + - 3.0.2 + - 2.7.4 env: DB: mysql RAILS: main @@ -64,8 +64,8 @@ jobs: fail-fast: false matrix: ruby: - - 3.0.1 - - 2.7.3 + - 3.0.2 + - 2.7.4 env: DB: postgres RAILS: main diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86ea17d..04e3e50 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,14 @@ jobs: - 5-2-stable - v5.2.4 ruby: - - 3.0.1 - - 2.7.3 - - 2.6.6 + - 3.0.2 + - 2.7.4 + - 2.6.7 exclude: - rails: v5.2.4 - ruby: 3.0.1 + ruby: 3.0.2 - rails: 5-2-stable - ruby: 3.0.1 + ruby: 3.0.2 env: DB: sqlite3 RAILS: ${{ matrix.rails }} @@ -51,14 +51,14 @@ jobs: - 5-2-stable - v5.2.4 ruby: - - 3.0.1 - - 2.7.3 - - 2.6.6 + - 3.0.2 + - 2.7.4 + - 2.6.7 exclude: - rails: v5.2.4 - ruby: 3.0.1 + ruby: 3.0.2 - rails: 5-2-stable - ruby: 3.0.1 + ruby: 3.0.2 env: DB: mysql RAILS: ${{ matrix.rails }} @@ -94,14 +94,14 @@ jobs: - 5-2-stable - v5.2.4 ruby: - - 3.0.1 - - 2.7.3 - - 2.6.6 + - 3.0.2 + - 2.7.4 + - 2.6.7 exclude: - rails: v5.2.4 - ruby: 3.0.1 + ruby: 3.0.2 - rails: 5-2-stable - ruby: 3.0.1 + ruby: 3.0.2 env: DB: postgres RAILS: ${{ matrix.rails }} @@ -144,7 +144,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.0.1 + ruby-version: 3.0.2 - name: Install dependencies run: bundle install - name: Run bug report templates