From 7667358b3ea1153be28d8a6b86be44c7d0e2b5bf Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Mon, 4 Aug 2025 13:44:23 -0600 Subject: [PATCH 1/2] use ruby 3.4.3 in CI --- .github/workflows/ci.yml | 2 +- .ruby-version | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1dd397d..7b618e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.0.3 + ruby-version: 3.4.3 - uses: actions/cache@v2 with: path: vendor/bundle diff --git a/.ruby-version b/.ruby-version index 75a22a2..6cb9d3d 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.0.3 +3.4.3 diff --git a/README.md b/README.md index 80d00bf..5b43a6c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Rails application with ViewComponent, using the `https://github.com/github/view_ ## Ruby version -Use your favorite Ruby version manager to install `3.0.0`. +Use your favorite Ruby version manager to install `3.4.3`. ## Local development From 19f24ca811a6684d3a84a5fa6f445eec91b3ef73 Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Mon, 4 Aug 2025 13:46:28 -0600 Subject: [PATCH 2/2] bump actions/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 7b618e8..1bda9f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.4.3 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: gems-${{ hashFiles('**/Gemfile.lock') }}