Skip to content

Commit

Permalink
Add Ruby 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Jan 20, 2025
1 parent 760c035 commit 4e57db9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
if: github.repository_owner == 'voxpupuli'
steps:
- uses: actions/checkout@v4
- name: Install Ruby 3.3
- name: Install Ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
ruby-version: '3.4'
env:
BUNDLE_WITHOUT: release
- name: Build gem
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
ruby-version: "3.4"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop
Expand All @@ -34,6 +34,7 @@ jobs:
- ruby: "3.2"
coverage: "yes"
- ruby: "3.3"
- ruby: "3.4"
env:
COVERAGE: ${{ matrix.coverage }}
name: RSpec - Ruby ${{ matrix.ruby }}
Expand Down
1 change: 1 addition & 0 deletions puppet-blacksmith.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.7.0'

s.add_runtime_dependency 'base64', '~> 0.2.0'
s.add_runtime_dependency 'puppet-modulebuilder', '~> 2.0', '>= 2.0.2'
s.add_runtime_dependency 'rest-client', '~>2.0'
s.add_development_dependency 'aruba', '~> 2.1'
Expand Down

0 comments on commit 4e57db9

Please sign in to comment.