Skip to content

Commit f43643c

Browse files
committed
update ruby version
1 parent fe93794 commit f43643c

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
22
// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/ruby
33
{
4+
"name": "reeper",
45
"dockerComposeFile": "docker-compose.yml",
56
"service": "app",
67
"workspaceFolder": "/workspace",

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
context: ..
1212
dockerfile: .devcontainer/Dockerfile
1313
args:
14-
VARIANT: 3.1-bullseye
14+
VARIANT: 3.2-bookworm
1515
USER_UID: 1000
1616
USER_GID: 1000
1717
INSTALL_NODE: "true"

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
ruby-version: ['3.1.4']
20+
ruby-version: ['3.2.2']
2121

2222
steps:
2323
- uses: actions/checkout@v3

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.4
1+
3.2.2

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### ------- Builder ------- ###
2-
ARG RUBY_VERSION=3.1.4
2+
ARG RUBY_VERSION=3.2.2
33
FROM ruby:${RUBY_VERSION}-alpine as builder
44

55
ENV HOME=/app \

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ DEPENDENCIES
432432
web-console (>= 4.1.0)
433433

434434
RUBY VERSION
435-
ruby 3.1.4p223
435+
ruby 3.2.2p53
436436

437437
BUNDLED WITH
438438
2.3.5

0 commit comments

Comments
 (0)