From 78e3ad3d67605bff56757912e8ae6d4998b10062 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Thu, 13 Mar 2025 20:53:27 +0900 Subject: [PATCH 1/2] ci: Add missing Ruby 3.4 for CI Signed-off-by: Kentaro Hayashi --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5018c5d..d1abfdb 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,6 +27,7 @@ jobs: - "3.1" - "3.2" - "3.3" + - "3.4" - "head" experimental: [false] From d081b23a085232d940b284409a9cd22fb5317ecc Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Thu, 13 Mar 2025 20:57:29 +0900 Subject: [PATCH 2/2] Use latest actions/checkout@v4 It fixes the following warning: The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ Signed-off-by: Kentaro Hayashi --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d1abfdb..82534e3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -44,7 +44,7 @@ jobs: # experimental: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}}