From f475c5f7fd5dcfc3ad43140a651baf35bc2af7ca Mon Sep 17 00:00:00 2001 From: Vincent Prigent Date: Thu, 22 Aug 2024 10:17:36 +0200 Subject: [PATCH] Github action update Update Ubuntu version for Ruby Setup Update checkout action version to avoid warnings --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c31c416..c35a458 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ "ubuntu-20.04" ] + os: [ "ubuntu-24.04" ] ruby: - '3.1' - '3.2' @@ -25,7 +25,7 @@ jobs: RAILS_ENV: test steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: