From 749c525184e568dd9e15234c76b2b14727d4c5c9 Mon Sep 17 00:00:00 2001 From: Matt Schwager Date: Mon, 30 Dec 2024 06:54:09 -0500 Subject: [PATCH] Add build for Ruby 3.4 --- .github/workflows/build.yml | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e10fa93..f235aaa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,7 @@ jobs: - "3.1" - "3.2" - "3.3" + - "3.4" steps: - uses: actions/checkout@v4 - name: Set up Ruby ${{ matrix.ruby-version }} diff --git a/Dockerfile b/Dockerfile index 922fbed..c4655d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # https://hub.docker.com/_/ruby -ARG RUBY_VERSION=3.3 +ARG RUBY_VERSION=3.4 FROM ruby:$RUBY_VERSION-slim-bookworm