Relax ruby version constraint to allow Ruby 3.3

This commit is contained in:
Chris Roberts 2024-01-18 12:04:24 -08:00
parent 55ec0d4391
commit d7ec3bffe9
7 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
ruby: ['3.0', '3.1', '3.2'] ruby: ['3.0', '3.1', '3.2', '3.3']
name: Vagrant acceptance tests (Ruby ${{ matrix.ruby }}) name: Vagrant acceptance tests (Ruby ${{ matrix.ruby }})
steps: steps:
- name: Stubbed for skip - name: Stubbed for skip

View File

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
ruby: ['3.0', '3.1', '3.2'] ruby: ['3.0', '3.1', '3.2', '3.3']
name: Vagrant acceptance tests (Ruby ${{ matrix.ruby }}) name: Vagrant acceptance tests (Ruby ${{ matrix.ruby }})
steps: steps:
- name: Code Checkout - name: Code Checkout

View File

@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: 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 }}) name: Vagrant unit tests on Go (Ruby ${{ matrix.ruby }})
steps: steps:
- name: Stubbed for skip - name: Stubbed for skip

View File

@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: 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 }}) name: Vagrant unit tests on Go (Ruby ${{ matrix.ruby }})
steps: steps:
- name: Code Checkout - name: Code Checkout

View File

@ -19,7 +19,7 @@ jobs:
continue-on-error: true continue-on-error: true
strategy: strategy:
matrix: 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 }} name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
steps: steps:
- name: Stubbed for skip - name: Stubbed for skip

View File

@ -32,7 +32,7 @@ jobs:
continue-on-error: true continue-on-error: true
strategy: strategy:
matrix: 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 }} name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
steps: steps:
- name: Code Checkout - name: Code Checkout

View File

@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.summary = "Build and distribute virtualized development environments." s.summary = "Build and distribute virtualized development environments."
s.description = "Vagrant is a tool for building and distributing 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.required_rubygems_version = ">= 1.3.6"
s.add_dependency "bcrypt_pbkdf", "~> 1.1" s.add_dependency "bcrypt_pbkdf", "~> 1.1"