Skip to content

Commit

Permalink
Bump rubocop from 1.66.1 to 1.67.0 (#267)
Browse files Browse the repository at this point in the history
* Bump rubocop from 1.66.1 to 1.67.0

Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.66.1 to 1.67.0.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.66.1...v1.67.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Remove unnecessary rubocop disable HashEachMethods 

It was disabled due to a false positive in rubocop, which got fixed in 1.67.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: david942j <[email protected]>
  • Loading branch information
dependabot[bot] and david942j authored Oct 16, 2024
1 parent 1ef8046 commit 80c8658
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
rubocop (1.66.1)
rubocop (1.67.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand All @@ -55,7 +55,7 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
unicode-display_width (2.5.0)
unicode-display_width (2.6.0)
yard (0.9.37)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion lib/seccomp-tools/consts/sys_nr/amd64.rb
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,4 @@
pkey_alloc: 330,
pkey_free: 331,
statx: 332
}.tap { |h| h.keys.each { |k| h["x32_#{k}".to_sym] = h[k] | X32_MODE_BIT } } # rubocop:disable Style/HashEachMethods
}.tap { |h| h.keys.each { |k| h["x32_#{k}".to_sym] = h[k] | X32_MODE_BIT } }

0 comments on commit 80c8658

Please sign in to comment.