From 9a0dfc8407f951b299031f6752c28589ba2ee4fb Mon Sep 17 00:00:00 2001 From: bedrock-adam Date: Tue, 3 Dec 2024 07:46:30 +1100 Subject: [PATCH 1/2] downgrade ruby --- .github/workflows/ci.yml | 2 +- .ruby-version | 2 +- Gemfile | 2 +- Gemfile.lock | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5f776c..e2319a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.3.0 + ruby-version: 3.1.6 - name: Cache gems uses: actions/cache@v2 diff --git a/.ruby-version b/.ruby-version index 15a2799..9cec716 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.3.0 +3.1.6 diff --git a/Gemfile b/Gemfile index a60e8bf..113c3da 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby "3.3.0" +ruby "3.1.6" gem "rails" diff --git a/Gemfile.lock b/Gemfile.lock index 3396bc7..ceb8fe1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -252,7 +252,7 @@ DEPENDENCIES sinatra RUBY VERSION - ruby 3.3.0 + ruby 3.1.6 BUNDLED WITH - 2.5.3 + 2.3.27 From 01c6797af96277d77280bd1a52bf5ae24fa83db1 Mon Sep 17 00:00:00 2001 From: bedrock-adam Date: Tue, 3 Dec 2024 07:53:57 +1100 Subject: [PATCH 2/2] update cache --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2319a6..943b111 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: ruby-version: 3.1.6 - name: Cache gems - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}