Skip to content

Commit

Permalink
(maint) - Add stricter dependency reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbreen28 committed Jul 29, 2024
1 parent 19157ca commit 9dd9f6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
gem push ./pkg/*.gem
env:
GEM_HOST_API_KEY: '${{ secrets.GEM_HOST_API_KEY }}'
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}

- name: "Publish to GitHub Package"
run: |
Expand Down
12 changes: 6 additions & 6 deletions puppet-editor-services.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Gem::Specification.new do |s|
'bin/*',
'[A-Z]*'].to_a
s.license = 'Apache-2.0'
s.add_runtime_dependency 'puppet-lint'
s.add_runtime_dependency 'hiera-eyaml'
s.add_runtime_dependency 'puppetfile-resolver'
s.add_runtime_dependency 'molinillo'
s.add_runtime_dependency 'puppet-strings'
s.add_runtime_dependency 'yard'
s.add_runtime_dependency 'puppet-lint', '~> 4.0'
s.add_runtime_dependency 'hiera-eyaml', '~> 2.1'
s.add_runtime_dependency 'puppetfile-resolver', '~> 0.6'
s.add_runtime_dependency 'molinillo', '~> 0.6'
s.add_runtime_dependency 'puppet-strings', '~> 4.0'
s.add_runtime_dependency 'yard', '~> 0.9'
end

0 comments on commit 9dd9f6c

Please sign in to comment.