Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: taiki-e/install-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.44.71
Choose a base ref
...
head repository: taiki-e/install-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.44.72
Choose a head ref
  • 8 commits
  • 10 files changed
  • 1 contributor

Commits on Nov 17, 2024

  1. Fix clippy::unnecessary_map_or warning

    ```
    error: this `map_or` is redundant
      --> tools/codegen/src/main.rs:68:34
       |
    68 |         if r.len() < per_page || version_req.map_or(false, |req| req == "latest") {
       |                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_some_and instead: `version_req.is_some_and(|req| req == "latest")`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
       = note: `-D clippy::unnecessary-map-or` implied by `-D warnings`
       = help: to override `-D warnings` add `#[allow(clippy::unnecessary_map_or)]`
    ```
    taiki-e committed Nov 17, 2024
    Configuration menu
    Copy the full SHA
    33a1d08 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2024

  1. Configuration menu
    Copy the full SHA
    f725b9a View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    a5ee591 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c9d919 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    adcdc5f View commit details
    Browse the repository at this point in the history
  4. Update comments

    taiki-e committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    f0e0e09 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b5ee2ee View commit details
    Browse the repository at this point in the history
  6. Release 2.44.72

    taiki-e committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    fe7bfc7 View commit details
    Browse the repository at this point in the history
Loading