From 790c4681a9717d30a1d3316750883bc1c95870b9 Mon Sep 17 00:00:00 2001 From: ryomo Date: Sat, 28 Dec 2024 23:05:52 +0900 Subject: [PATCH 1/2] Downgrade ubuntu from latest (24.04) to 22.04 on GitHub Action --- .github/workflows/jekyll.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 68520b5..0481b5d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -29,7 +29,7 @@ concurrency: jobs: # Build job build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 From b198a4b2ec93887af805510f5b8b9151a5a3057c Mon Sep 17 00:00:00 2001 From: Ryo Moriwaki Date: Sat, 28 Dec 2024 23:16:00 +0900 Subject: [PATCH 2/2] Update Ruby version to 3.2 on GitHub Actions to resolve compatibility issues with activesupport --- .github/workflows/jekyll.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 0481b5d..5c89eab 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -34,9 +34,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby - uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0 + uses: ruby/setup-ruby@v1 with: - ruby-version: '3.1' # Not needed with a .ruby-version file + ruby-version: '3.2' # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems - name: Setup Pages