Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ RUN ARCH=$(dpkg --print-architecture) && \
USER node

# Install rbenv and ruby-build
ARG RUBY_VERSION=3.4.7
ARG RUBY_VERSION=4.0.1
RUN git clone https://github.com/rbenv/rbenv.git ~/.rbenv && \
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build && \
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc && \
echo 'eval "$(rbenv init - zsh)"' >> ~/.zshrc && \
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc && \
echo 'eval "$(rbenv init - bash)"' >> ~/.bashrc

# Install Ruby 3.4.7
# Install Ruby
ENV PATH="/home/node/.rbenv/bin:/home/node/.rbenv/shims:$PATH"
RUN rbenv install ${RUBY_VERSION} && \
rbenv global ${RUBY_VERSION} && \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
ruby-version: 4.0

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
ruby: [ head, 3.4 ]
ruby: [ head, 4.0 ]
timeout-minutes: 10
env:
RUBYOPT: --enable-frozen-string-literal --debug-frozen-string-literal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ head, 3.4, 3.3, 3.2 ]
ruby: [ head, 4.0, 3.4, 3.3 ]
timeout-minutes: 10
env:
RUBYOPT: --enable-frozen-string-literal --debug-frozen-string-literal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
ruby: [ '3.4' ]
ruby: [ 4.0 ]
timeout-minutes: 10
env:
RUBYOPT: --enable-frozen-string-literal --debug-frozen-string-literal
Expand Down
Loading