Skip to content

Commit 80b178d

Browse files
committed
Include Ruby 3.4
1 parent 03371fd commit 80b178d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/testing-skipped.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
continue-on-error: true
2020
strategy:
2121
matrix:
22-
ruby: [ '3.1', '3.2', '3.3' ]
22+
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
2323
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
2424
steps:
2525
- name: Stubbed for skip

.github/workflows/testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
continue-on-error: true
3333
strategy:
3434
matrix:
35-
ruby: [ '3.1', '3.2', '3.3' ]
35+
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
3636
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
3737
steps:
3838
- name: Code Checkout
39-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
39+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4040
- name: Setup Ruby
41-
uses: ruby/setup-ruby@3783f195e29b74ae398d7caca108814bbafde90e # v1.180.1
41+
uses: ruby/setup-ruby@922ebc4c5262cd14e07bb0e1db020984b6c064fe # v1.226.0
4242
with:
4343
ruby-version: ${{matrix.ruby}}
4444
bundler-cache: true

vagrant.gemspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ Gem::Specification.new do |s|
1212
s.summary = "Build and distribute virtualized development environments."
1313
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
1414

15-
s.required_ruby_version = ">= 3.0", "< 3.4"
15+
s.required_ruby_version = ">= 3.0", "< 3.5"
1616
s.required_rubygems_version = ">= 1.3.6"
1717

1818
s.add_dependency "base64", "~> 0.2.0"
1919
s.add_dependency "bcrypt_pbkdf", "~> 1.1"
20-
s.add_dependency "childprocess", "~> 5.0.0"
20+
s.add_dependency "childprocess", "~> 5.1"
21+
s.add_dependency "csv", "~> 3.3"
2122
s.add_dependency "ed25519", "~> 1.3.0"
2223
s.add_dependency "erubi"
2324
s.add_dependency 'googleapis-common-protos-types', '~> 1.3'

0 commit comments

Comments
 (0)