Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v5
- uses: ruby/[email protected]
with:
ruby-version: 3.3.9
ruby-version: 3.4.7
- name: Set up environment
run: bundle install
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: ruby/[email protected]
with:
ruby-version: 3.3.9
ruby-version: 3.4.7

- name: Set up environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: ruby/[email protected]
with:
ruby-version: 3.3.9
ruby-version: 3.4.7

- name: Set up environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: ruby/[email protected]
with:
ruby-version: 3.3.9
ruby-version: 3.4.7

- name: Set up environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-bundle-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 ruby:3.3.9-alpine
FROM --platform=linux/amd64 ruby:3.4.7-alpine

# Installation path
ENV HOME=/app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-package-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 ruby:3.3.9-slim
FROM --platform=linux/amd64 ruby:3.4.7-slim

RUN apt-get update && apt-get install -y \
curl \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-release-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 ruby:3.3.9-alpine
FROM --platform=linux/amd64 ruby:3.4.7-alpine

# Installation path
ENV HOME=/app
Expand Down
Loading