Skip to content

Commit

Permalink
bump ruby to 3.3.4/3.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Ithanil committed Nov 12, 2024
1 parent eb35411 commit d7b5dd8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
RUBY_VERSION: 3.1.0
RUBY_VERSION: 3.3.4
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres

name: CI
Expand All @@ -15,7 +15,7 @@ on:
jobs:
test:
name: Rubocop + Rails Test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.10

services:
postgres:
Expand All @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v3

- name: Install Ruby ${{ env.RUBY_VERSION }}
uses: ruby/setup-ruby@v1.126.0
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}

Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.17 AS alpine
FROM alpine:3.20 AS alpine

FROM ubuntu:20.04 AS bbb-playback
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -44,9 +44,9 @@ RUN apk add --no-cache \
tzdata \
shared-mime-info
# ruby-start.
# Install Ruby from sources since Scalelite does not use the version shipped with Apline.
ARG RUBY_RELEASE="https://cache.ruby-lang.org/pub/ruby/3.1/ruby-3.1.6.tar.gz"
ARG RUBY="ruby-3.1.6"
# Install Ruby from sources since Scalelite does not necessarily use the version shipped with Apline.
ARG RUBY_RELEASE="https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.6.tar.gz"
ARG RUBY="ruby-3.3.6"
RUN apk add --no-cache git make gcc g++ libc-dev pkgconfig \
libxml2-dev libxslt-dev postgresql-dev coreutils curl wget bash \
gnupg tar linux-headers bison readline-dev readline zlib-dev \
Expand Down
8 changes: 4 additions & 4 deletions dockerfiles/v1/focal260-alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.17 AS alpine
FROM alpine:3.20 AS alpine

FROM ubuntu:20.04 AS bbb-playback
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -44,9 +44,9 @@ RUN apk add --no-cache \
tzdata \
shared-mime-info
# ruby-start.
# Install Ruby from sources since Scalelite does not use the version shipped with Apline.
ARG RUBY_RELEASE="https://cache.ruby-lang.org/pub/ruby/3.1/ruby-3.1.6.tar.gz"
ARG RUBY="ruby-3.1.6"
# Install Ruby from sources since Scalelite does not necessarily use the version shipped with Apline.
ARG RUBY_RELEASE="https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.6.tar.gz"
ARG RUBY="ruby-3.3.6"
RUN apk add --no-cache git make gcc g++ libc-dev pkgconfig \
libxml2-dev libxslt-dev postgresql-dev coreutils curl wget bash \
gnupg tar linux-headers bison readline-dev readline zlib-dev \
Expand Down

0 comments on commit d7b5dd8

Please sign in to comment.