From aff0a275a6689ec2c4847a3d65cfeb88d5b86bc9 Mon Sep 17 00:00:00 2001 From: Watson Date: Mon, 27 May 2024 07:35:27 +0900 Subject: [PATCH] CI: Update ubuntu versions (#637) --- .github/workflows/ci.yml | 6 +++--- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 898ada1a..3417fb09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ permissions: jobs: lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 20 strategy: matrix: @@ -47,7 +47,7 @@ jobs: run: bundle exec rubocop test-ruby: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 20 strategy: matrix: @@ -79,7 +79,7 @@ jobs: run: bundle exec rake test-jruby: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 20 strategy: matrix: diff --git a/Dockerfile b/Dockerfile index d46233dd..17cd2948 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 RUN apt update && \ apt install -y tzdata sudo && \