Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ksxgithub/github-actions-deploy-aur action to v4 #397

Merged
merged 1 commit into from
Mar 1, 2025

chore(deps): update ksxgithub/github-actions-deploy-aur action to v4

832e6c8
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

chore(deps): update ksxgithub/github-actions-deploy-aur action to v4 #397

chore(deps): update ksxgithub/github-actions-deploy-aur action to v4
832e6c8
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Mar 1, 2025 in 1s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.85.0 (4d91de4e4 2025-02-17)
  • cargo 1.85.0 (d73d2caf9 2024-12-31)
  • clippy 0.1.85 (4d91de4e48 2025-02-17)

Annotations

Check warning on line 122 in /Users/runner/work/rblog/rblog/target/debug/build/rblog-bb7ed7d98f502de3/out/templates/_utils.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> /Users/runner/work/rblog/rblog/target/debug/build/rblog-bb7ed7d98f502de3/out/templates/_utils.rs:122:6
    |
122 | impl<'a> ToHtmlEscapingWriter<'a> {
    |      ^^                       ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
122 - impl<'a> ToHtmlEscapingWriter<'a> {
122 + impl ToHtmlEscapingWriter<'_> {
    |

Check warning on line 96 in /Users/runner/work/rblog/rblog/target/debug/build/rblog-bb7ed7d98f502de3/out/templates/_utils.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
  --> /Users/runner/work/rblog/rblog/target/debug/build/rblog-bb7ed7d98f502de3/out/templates/_utils.rs:96:6
   |
96 | impl<'a> Write for ToHtmlEscapingWriter<'a> {
   |      ^^                                 ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
   |
96 - impl<'a> Write for ToHtmlEscapingWriter<'a> {
96 + impl Write for ToHtmlEscapingWriter<'_> {
   |