From 77a3a5b7748725f27606f84c1e339733db054fea Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Sat, 16 Aug 2025 10:35:35 +0200 Subject: [PATCH] CI: Use Ruby 3.2+ Also update the actions/checkout@v5. Fixes #415 --- .github/workflows/gemstash-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/gemstash-ci.yml b/.github/workflows/gemstash-ci.yml index 863ab9b5..2c7f1900 100644 --- a/.github/workflows/gemstash-ci.yml +++ b/.github/workflows/gemstash-ci.yml @@ -12,20 +12,20 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1", "3.2", "3.3", "jruby-9.4"] + ruby: ["3.2", "3.3", "3.4", "jruby-9.4"] db_adapter: ["sqlite3"] cache_type: ["memory"] include: - - ruby: "3.3" + - ruby: "3.4" db_adapter: "postgres" cache_type: "memory" - - ruby: "3.3" + - ruby: "3.4" db_adapter: "mysql2" cache_type: "memory" - - ruby: "3.3" + - ruby: "3.4" db_adapter: "sqlite3" cache_type: "memcached" - - ruby: "3.3" + - ruby: "3.4" db_adapter: "sqlite3" cache_type: "redis" - ruby: "jruby-9.4" @@ -36,7 +36,7 @@ jobs: cache_type: "redis" services: postgres: - image: postgres:13 + image: postgres:17 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres @@ -58,7 +58,7 @@ jobs: GEMSTASH_SPEC_REDIS_SERVERS: redis://localhost:6379 GEMSTASH_SPEC_MEMCACHED_SERVERS: localhost:11211 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: persist-credentials: false - name: Setup ruby