diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml index 077b254d..80ba8585 100644 --- a/.github/workflows/audit.yaml +++ b/.github/workflows/audit.yaml @@ -52,7 +52,7 @@ jobs: cargo generate-lockfile --verbose fi - - uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 # v1.6.3 + - uses: EmbarkStudios/cargo-deny-action@8371184bd11e21dcf8ac82ebf8c9c9f74ebf7268 # v2.0.1 with: arguments: --locked --all-features command: check ${{ matrix.checks }} diff --git a/.github/workflows/block-merge.yaml b/.github/workflows/block-merge.yaml index 16b671cf..8de0bf03 100644 --- a/.github/workflows/block-merge.yaml +++ b/.github/workflows/block-merge.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: mheap/github-action-required-labels@5847eef68201219cf0a4643ea7be61e77837bbce # v5.4.1 + - uses: mheap/github-action-required-labels@d25134c992b943fb6ad00c25ea00eb5988c0a9dd # v5.4.2 with: mode: exactly count: 0 diff --git a/Gemfile b/Gemfile index c17fe91f..0d7f5c51 100644 --- a/Gemfile +++ b/Gemfile @@ -4,5 +4,5 @@ source 'https://rubygems.org' gem 'bundler-audit', '~> 0.9', require: false gem 'rake', '>= 12.3.3', require: false -gem 'rubocop', '~> 1.65', require: false +gem 'rubocop', '~> 1.66', require: false gem 'rubocop-rake', '~> 0.6', require: false diff --git a/Gemfile.lock b/Gemfile.lock index 1d800bc0..4cd39b1c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,39 +2,35 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.2) - bundler-audit (0.9.1) + bundler-audit (0.9.2) bundler (>= 1.2.0, < 3) thor (~> 1.0) json (2.7.2) language_server-protocol (3.17.0.3) - parallel (1.25.1) - parser (3.3.4.0) + parallel (1.26.3) + parser (3.3.5.0) ast (~> 2.4.1) racc racc (1.8.1) rainbow (3.1.1) rake (13.2.1) regexp_parser (2.9.2) - rexml (3.3.6) - strscan - rubocop (1.65.1) + rubocop (1.66.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.4, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.31.1, < 2.0) + rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.3) + rubocop-ast (1.32.3) parser (>= 3.3.1.0) rubocop-rake (0.6.0) rubocop (~> 1.0) ruby-progressbar (1.13.0) - strscan (3.1.0) - thor (1.2.1) + thor (1.3.2) unicode-display_width (2.5.0) PLATFORMS @@ -43,7 +39,7 @@ PLATFORMS DEPENDENCIES bundler-audit (~> 0.9) rake (>= 12.3.3) - rubocop (~> 1.65) + rubocop (~> 1.66) rubocop-rake (~> 0.6) BUNDLED WITH diff --git a/deny.toml b/deny.toml index 5847c099..2ff93806 100644 --- a/deny.toml +++ b/deny.toml @@ -1,21 +1,11 @@ [advisories] -vulnerability = "deny" -unmaintained = "deny" -notice = "warn" ignore = [] [licenses] -unlicensed = "deny" allow = [ "Apache-2.0", "MIT", - "Unicode-DFS-2016", ] -deny = [] -copyleft = "deny" -allow-osi-fsf-free = "neither" -default = "deny" -confidence-threshold = 0.8 [bans] multiple-versions = "deny" diff --git a/src/lib.rs b/src/lib.rs index eeb77184..105ba00a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,9 +16,10 @@ #![allow(clippy::let_underscore_untyped)] #![allow(clippy::manual_let_else)] #![allow(clippy::missing_panics_doc)] -#![allow(clippy::option_if_let_else)] #![allow(clippy::needless_pass_by_ref_mut)] +#![allow(clippy::option_if_let_else)] #![allow(clippy::ref_as_ptr)] +#![allow(clippy::too_long_first_doc_paragraph)] #![allow(unknown_lints)] #![warn(missing_copy_implementations)] #![warn(missing_debug_implementations)]