Merge pull request #13335 from chrisroberts/ruby-3.3
Relax ruby version constraint to allow Ruby 3.3
This commit is contained in:
commit
35e823ca12
2
.github/workflows/go-spectest-skipped.yml
vendored
2
.github/workflows/go-spectest-skipped.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: ['3.0', '3.1', '3.2']
|
||||
ruby: ['3.0', '3.1', '3.2', '3.3']
|
||||
name: Vagrant acceptance tests (Ruby ${{ matrix.ruby }})
|
||||
steps:
|
||||
- name: Stubbed for skip
|
||||
|
||||
2
.github/workflows/go-spectest.yml
vendored
2
.github/workflows/go-spectest.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: ['3.0', '3.1', '3.2']
|
||||
ruby: ['3.0', '3.1', '3.2', '3.3']
|
||||
name: Vagrant acceptance tests (Ruby ${{ matrix.ruby }})
|
||||
steps:
|
||||
- name: Code Checkout
|
||||
|
||||
2
.github/workflows/go-testing-skipped.yml
vendored
2
.github/workflows/go-testing-skipped.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: ['3.0', '3.1', '3.2']
|
||||
ruby: ['3.0', '3.1', '3.2', '3.3']
|
||||
name: Vagrant unit tests on Go (Ruby ${{ matrix.ruby }})
|
||||
steps:
|
||||
- name: Stubbed for skip
|
||||
|
||||
2
.github/workflows/go-testing.yml
vendored
2
.github/workflows/go-testing.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: ['3.0', '3.1', '3.2']
|
||||
ruby: ['3.0', '3.1', '3.2', '3.3']
|
||||
name: Vagrant unit tests on Go (Ruby ${{ matrix.ruby }})
|
||||
steps:
|
||||
- name: Code Checkout
|
||||
|
||||
2
.github/workflows/testing-skipped.yml
vendored
2
.github/workflows/testing-skipped.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
||||
continue-on-error: true
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [ '3.0', '3.1', '3.2' ]
|
||||
ruby: [ '3.0', '3.1', '3.2', '3.3' ]
|
||||
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
|
||||
steps:
|
||||
- name: Stubbed for skip
|
||||
|
||||
2
.github/workflows/testing.yml
vendored
2
.github/workflows/testing.yml
vendored
@ -32,7 +32,7 @@ jobs:
|
||||
continue-on-error: true
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [ '3.0', '3.1', '3.2' ]
|
||||
ruby: [ '3.0', '3.1', '3.2', '3.3' ]
|
||||
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
|
||||
steps:
|
||||
- name: Code Checkout
|
||||
|
||||
@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
||||
s.summary = "Build and distribute virtualized development environments."
|
||||
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
|
||||
|
||||
s.required_ruby_version = ">= 3.0", "< 3.3"
|
||||
s.required_ruby_version = ">= 3.0", "< 3.4"
|
||||
s.required_rubygems_version = ">= 1.3.6"
|
||||
|
||||
s.add_dependency "bcrypt_pbkdf", "~> 1.1"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user