Skip to content

Commit

Permalink
Updating winrm to overcome a CVE (#3)
Browse files Browse the repository at this point in the history
* updating winrm to overcome a CVE
Signed-off-by: John McCrae <[email protected]>
  • Loading branch information
johnmccrae authored Jan 8, 2025
1 parent fc98d6d commit a03ade6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-2019]
ruby: ['2.6', '2.7', '3.0', '3.1']
os: [windows-2022, windows-2019]
ruby: ['3.0', '3.1']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.5
TargetRubyVersion: 3.0

Naming/FileName:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.5
1.3.6
6 changes: 3 additions & 3 deletions winrm-fs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Gem::Specification.new do |s|

s.bindir = 'bin'
s.executables = ['rwinrmcp']
s.required_ruby_version = '>= 2.5.0'
s.add_runtime_dependency 'chef-winrm', '>= 2.3.10'
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'erubi', '>= 1.7'
s.add_runtime_dependency 'logging', ['>= 1.6.1', '< 3.0']
s.add_runtime_dependency 'rubyzip', '~> 2.0'
s.add_runtime_dependency 'winrm', '~> 2.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake', '>= 10.3', '< 13'
s.add_development_dependency 'rake', '>= 13.2.1'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rubocop', '~> 1.26.0'
end

0 comments on commit a03ade6

Please sign in to comment.