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

add Integer type casting when loading yaml file #1669

Merged
merged 17 commits into from Feb 26, 2023

Conversation

kjeom
Copy link

@kjeom kjeom commented Jan 27, 2023

What type of PR is this?

(REQUIRED)

  • bug

What this PR does / why we need it:

(REQUIRED)

  • Latest v2 release (2.24.1) resolved this There are two problems when loading yaml (slice, Uint64 flags) #1592
  • But also we cannot load the Uint64 flag because the casting error
  • The integer from yaml file is unmarshaled to the int about lower than 9223372036854775807 regardless of the flag type
  • This PR can accept even the integer that can be casted to the flag type
  • IsSet()
    • The IsSet() returns true after loaded from yaml about all the flags except the slice flags
    • This PR can return true about slice flag type also

Which issue(s) this PR fixes:

(REQUIRED)

Special notes for your reviewer:

(fill-in or delete this section)

Testing

(fill-in or delete this section)

Release Notes

(REQUIRED)


@kjeom kjeom requested a review from a team as a code owner January 27, 2023 08:05
@abitrolly
Copy link
Contributor

abitrolly commented Jan 27, 2023

@urfave/cli I am not watching it closely, but is there an API to type cast and report errors for just any type? The specificity of int64 sounds like something that should not come out of the box for generic command line handling library.

@dearchap
Copy link
Contributor

@kjeom Can you add some tests in altsrc for this condition ?

@kjeom
Copy link
Author

kjeom commented Jan 31, 2023

@urfave/cli I am not watching it closely, but is there an API to type cast and report errors for just any type? The specificity of int64 sounds like something that should not come out of the box for generic command line handling library.

I didn't find the API.

altsrc/map_input_source.go Outdated Show resolved Hide resolved
case reflect.Uint64:
uint64Value := v.(uint64)
if uint64Value <= math.MaxInt64 {
int64Value = int64(uint64Value)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test to update a test case to cover this

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All the patched code is covered.

altsrc/map_input_source.go Outdated Show resolved Hide resolved
altsrc/map_input_source.go Outdated Show resolved Hide resolved
@kjeom
Copy link
Author

kjeom commented Feb 21, 2023

@dearchap please finish your review

@dearchap dearchap merged commit ce617c1 into urfave:v2-maint Feb 26, 2023
another-rex pushed a commit to google/osv-scanner that referenced this pull request Mar 5, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/go-git/go-git/v5](https://togithub.com/go-git/go-git) |
require | minor | `v5.5.2` -> `v5.6.0` |
|
[github.com/jedib0t/go-pretty/v6](https://togithub.com/jedib0t/go-pretty)
| require | patch | `v6.4.4` -> `v6.4.6` |
| [github.com/urfave/cli/v2](https://togithub.com/urfave/cli) | require
| minor | `v2.24.4` -> `v2.25.0` |
| [golang.org/x/exp](https://togithub.com/golang/exp) | require | digest
| `c95f2b4` -> `9ff063c` |
| [golang.org/x/mod](https://togithub.com/golang/mod) | require | minor
| `v0.8.0` -> `v0.9.0` |
| [golang.org/x/term](https://togithub.com/golang/term) | require |
minor | `v0.5.0` -> `v0.6.0` |
| [golang.org/x/tools](https://togithub.com/golang/tools) | require |
minor | `v0.5.1-0.20230117180257-8aba49bb5ea2` -> `v0.6.0` |
| [golang.org/x/vuln](https://togithub.com/golang/vuln) | require |
digest | `4ec8867` -> `d3042fe` |

---

### Release Notes

<details>
<summary>go-git/go-git</summary>

### [`v5.6.0`](https://togithub.com/go-git/go-git/releases/tag/v5.6.0)

[Compare
Source](https://togithub.com/go-git/go-git/compare/v5.5.2...v5.6.0)

#### What's Changed

- Worktree, check for empty parent dirs during Reset (Fixes
[#&#8203;670](https://togithub.com/go-git/go-git/issues/670)) by
[@&#8203;mbohy](https://togithub.com/mbohy) in
[go-git/go-git#671
- \*: remove need to build with CGO by
[@&#8203;pjbgf](https://togithub.com/pjbgf) in
[go-git/go-git#688
- plumbing: support SSH/X509 signed tags by
[@&#8203;hiddeco](https://togithub.com/hiddeco) in
[go-git/go-git#690

**Full Changelog**:
go-git/go-git@v5.5.2...v5.6.0

</details>

<details>
<summary>jedib0t/go-pretty</summary>

###
[`v6.4.6`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.6)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.5...v6.4.6)

### Features

-   **table**
- honor border color overrides for title row
([#&#8203;260](https://togithub.com/jedib0t/go-pretty/issues/260))

###
[`v6.4.5`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.5)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.4...v6.4.5)

### Features

-   **table**
- option to custom color borders/separators
([#&#8203;259](https://togithub.com/jedib0t/go-pretty/issues/259))
        -   `table.Style().Color.Border`
        -   `table.Style().Color.Separator`
-   **text**
- handle escape sequences that embed a URL
([#&#8203;256](https://togithub.com/jedib0t/go-pretty/issues/256)) //
thanks [@&#8203;vsemichev](https://togithub.com/vsemichev)

</details>

<details>
<summary>urfave/cli</summary>

### [`v2.25.0`](https://togithub.com/urfave/cli/releases/tag/v2.25.0)

[Compare
Source](https://togithub.com/urfave/cli/compare/v2.24.4...v2.25.0)

#### What's Changed

- Drop support for Go versions before 1.18 by
[@&#8203;meatballhat](https://togithub.com/meatballhat) in
[urfave/cli#1667
- add Integer type casting when loading yaml file by
[@&#8203;kjeom](https://togithub.com/kjeom) in
[urfave/cli#1669

#### New Contributors

- [@&#8203;kjeom](https://togithub.com/kjeom) made their first
contribution in
[urfave/cli#1669

**Full Changelog**:
urfave/cli@v2.24.4...v2.25.0

</details>

<details>
<summary>golang/mod</summary>

### [`v0.9.0`](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

[Compare
Source](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

</details>

<details>
<summary>golang/term</summary>

### [`v0.6.0`](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

[Compare
Source](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 6am on monday" in timezone
Australia/Sydney, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNDYuMiIsInVwZGF0ZWRJblZlciI6IjM0LjE0Ni4yIn0=-->
hayleycd pushed a commit to google/osv-scanner that referenced this pull request Mar 9, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/go-git/go-git/v5](https://togithub.com/go-git/go-git) |
require | minor | `v5.5.2` -> `v5.6.0` |
|
[github.com/jedib0t/go-pretty/v6](https://togithub.com/jedib0t/go-pretty)
| require | patch | `v6.4.4` -> `v6.4.6` |
| [github.com/urfave/cli/v2](https://togithub.com/urfave/cli) | require
| minor | `v2.24.4` -> `v2.25.0` |
| [golang.org/x/exp](https://togithub.com/golang/exp) | require | digest
| `c95f2b4` -> `9ff063c` |
| [golang.org/x/mod](https://togithub.com/golang/mod) | require | minor
| `v0.8.0` -> `v0.9.0` |
| [golang.org/x/term](https://togithub.com/golang/term) | require |
minor | `v0.5.0` -> `v0.6.0` |
| [golang.org/x/tools](https://togithub.com/golang/tools) | require |
minor | `v0.5.1-0.20230117180257-8aba49bb5ea2` -> `v0.6.0` |
| [golang.org/x/vuln](https://togithub.com/golang/vuln) | require |
digest | `4ec8867` -> `d3042fe` |

---

### Release Notes

<details>
<summary>go-git/go-git</summary>

### [`v5.6.0`](https://togithub.com/go-git/go-git/releases/tag/v5.6.0)

[Compare
Source](https://togithub.com/go-git/go-git/compare/v5.5.2...v5.6.0)

#### What's Changed

- Worktree, check for empty parent dirs during Reset (Fixes
[#&#8203;670](https://togithub.com/go-git/go-git/issues/670)) by
[@&#8203;mbohy](https://togithub.com/mbohy) in
[go-git/go-git#671
- \*: remove need to build with CGO by
[@&#8203;pjbgf](https://togithub.com/pjbgf) in
[go-git/go-git#688
- plumbing: support SSH/X509 signed tags by
[@&#8203;hiddeco](https://togithub.com/hiddeco) in
[go-git/go-git#690

**Full Changelog**:
go-git/go-git@v5.5.2...v5.6.0

</details>

<details>
<summary>jedib0t/go-pretty</summary>

###
[`v6.4.6`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.6)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.5...v6.4.6)

### Features

-   **table**
- honor border color overrides for title row
([#&#8203;260](https://togithub.com/jedib0t/go-pretty/issues/260))

###
[`v6.4.5`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.5)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.4...v6.4.5)

### Features

-   **table**
- option to custom color borders/separators
([#&#8203;259](https://togithub.com/jedib0t/go-pretty/issues/259))
        -   `table.Style().Color.Border`
        -   `table.Style().Color.Separator`
-   **text**
- handle escape sequences that embed a URL
([#&#8203;256](https://togithub.com/jedib0t/go-pretty/issues/256)) //
thanks [@&#8203;vsemichev](https://togithub.com/vsemichev)

</details>

<details>
<summary>urfave/cli</summary>

### [`v2.25.0`](https://togithub.com/urfave/cli/releases/tag/v2.25.0)

[Compare
Source](https://togithub.com/urfave/cli/compare/v2.24.4...v2.25.0)

#### What's Changed

- Drop support for Go versions before 1.18 by
[@&#8203;meatballhat](https://togithub.com/meatballhat) in
[urfave/cli#1667
- add Integer type casting when loading yaml file by
[@&#8203;kjeom](https://togithub.com/kjeom) in
[urfave/cli#1669

#### New Contributors

- [@&#8203;kjeom](https://togithub.com/kjeom) made their first
contribution in
[urfave/cli#1669

**Full Changelog**:
urfave/cli@v2.24.4...v2.25.0

</details>

<details>
<summary>golang/mod</summary>

### [`v0.9.0`](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

[Compare
Source](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

</details>

<details>
<summary>golang/term</summary>

### [`v0.6.0`](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

[Compare
Source](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 6am on monday" in timezone
Australia/Sydney, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNDYuMiIsInVwZGF0ZWRJblZlciI6IjM0LjE0Ni4yIn0=-->
julieqiu pushed a commit to julieqiu/osv-scanner that referenced this pull request May 2, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/go-git/go-git/v5](https://togithub.com/go-git/go-git) |
require | minor | `v5.5.2` -> `v5.6.0` |
|
[github.com/jedib0t/go-pretty/v6](https://togithub.com/jedib0t/go-pretty)
| require | patch | `v6.4.4` -> `v6.4.6` |
| [github.com/urfave/cli/v2](https://togithub.com/urfave/cli) | require
| minor | `v2.24.4` -> `v2.25.0` |
| [golang.org/x/exp](https://togithub.com/golang/exp) | require | digest
| `c95f2b4` -> `9ff063c` |
| [golang.org/x/mod](https://togithub.com/golang/mod) | require | minor
| `v0.8.0` -> `v0.9.0` |
| [golang.org/x/term](https://togithub.com/golang/term) | require |
minor | `v0.5.0` -> `v0.6.0` |
| [golang.org/x/tools](https://togithub.com/golang/tools) | require |
minor | `v0.5.1-0.20230117180257-8aba49bb5ea2` -> `v0.6.0` |
| [golang.org/x/vuln](https://togithub.com/golang/vuln) | require |
digest | `4ec8867` -> `d3042fe` |

---

### Release Notes

<details>
<summary>go-git/go-git</summary>

### [`v5.6.0`](https://togithub.com/go-git/go-git/releases/tag/v5.6.0)

[Compare
Source](https://togithub.com/go-git/go-git/compare/v5.5.2...v5.6.0)

#### What's Changed

- Worktree, check for empty parent dirs during Reset (Fixes
[#&#8203;670](https://togithub.com/go-git/go-git/issues/670)) by
[@&#8203;mbohy](https://togithub.com/mbohy) in
[go-git/go-git#671
- \*: remove need to build with CGO by
[@&#8203;pjbgf](https://togithub.com/pjbgf) in
[go-git/go-git#688
- plumbing: support SSH/X509 signed tags by
[@&#8203;hiddeco](https://togithub.com/hiddeco) in
[go-git/go-git#690

**Full Changelog**:
go-git/go-git@v5.5.2...v5.6.0

</details>

<details>
<summary>jedib0t/go-pretty</summary>

###
[`v6.4.6`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.6)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.5...v6.4.6)

### Features

-   **table**
- honor border color overrides for title row
([#&#8203;260](https://togithub.com/jedib0t/go-pretty/issues/260))

###
[`v6.4.5`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.5)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.4...v6.4.5)

### Features

-   **table**
- option to custom color borders/separators
([#&#8203;259](https://togithub.com/jedib0t/go-pretty/issues/259))
        -   `table.Style().Color.Border`
        -   `table.Style().Color.Separator`
-   **text**
- handle escape sequences that embed a URL
([#&#8203;256](https://togithub.com/jedib0t/go-pretty/issues/256)) //
thanks [@&#8203;vsemichev](https://togithub.com/vsemichev)

</details>

<details>
<summary>urfave/cli</summary>

### [`v2.25.0`](https://togithub.com/urfave/cli/releases/tag/v2.25.0)

[Compare
Source](https://togithub.com/urfave/cli/compare/v2.24.4...v2.25.0)

#### What's Changed

- Drop support for Go versions before 1.18 by
[@&#8203;meatballhat](https://togithub.com/meatballhat) in
[urfave/cli#1667
- add Integer type casting when loading yaml file by
[@&#8203;kjeom](https://togithub.com/kjeom) in
[urfave/cli#1669

#### New Contributors

- [@&#8203;kjeom](https://togithub.com/kjeom) made their first
contribution in
[urfave/cli#1669

**Full Changelog**:
urfave/cli@v2.24.4...v2.25.0

</details>

<details>
<summary>golang/mod</summary>

### [`v0.9.0`](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

[Compare
Source](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

</details>

<details>
<summary>golang/term</summary>

### [`v0.6.0`](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

[Compare
Source](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 6am on monday" in timezone
Australia/Sydney, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNDYuMiIsInVwZGF0ZWRJblZlciI6IjM0LjE0Ni4yIn0=-->
julieqiu pushed a commit to julieqiu/osv-scanner that referenced this pull request May 2, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/go-git/go-git/v5](https://togithub.com/go-git/go-git) |
require | minor | `v5.5.2` -> `v5.6.0` |
|
[github.com/jedib0t/go-pretty/v6](https://togithub.com/jedib0t/go-pretty)
| require | patch | `v6.4.4` -> `v6.4.6` |
| [github.com/urfave/cli/v2](https://togithub.com/urfave/cli) | require
| minor | `v2.24.4` -> `v2.25.0` |
| [golang.org/x/exp](https://togithub.com/golang/exp) | require | digest
| `c95f2b4` -> `9ff063c` |
| [golang.org/x/mod](https://togithub.com/golang/mod) | require | minor
| `v0.8.0` -> `v0.9.0` |
| [golang.org/x/term](https://togithub.com/golang/term) | require |
minor | `v0.5.0` -> `v0.6.0` |
| [golang.org/x/tools](https://togithub.com/golang/tools) | require |
minor | `v0.5.1-0.20230117180257-8aba49bb5ea2` -> `v0.6.0` |
| [golang.org/x/vuln](https://togithub.com/golang/vuln) | require |
digest | `4ec8867` -> `d3042fe` |

---

### Release Notes

<details>
<summary>go-git/go-git</summary>

### [`v5.6.0`](https://togithub.com/go-git/go-git/releases/tag/v5.6.0)

[Compare
Source](https://togithub.com/go-git/go-git/compare/v5.5.2...v5.6.0)

#### What's Changed

- Worktree, check for empty parent dirs during Reset (Fixes
[#&#8203;670](https://togithub.com/go-git/go-git/issues/670)) by
[@&#8203;mbohy](https://togithub.com/mbohy) in
[go-git/go-git#671
- \*: remove need to build with CGO by
[@&#8203;pjbgf](https://togithub.com/pjbgf) in
[go-git/go-git#688
- plumbing: support SSH/X509 signed tags by
[@&#8203;hiddeco](https://togithub.com/hiddeco) in
[go-git/go-git#690

**Full Changelog**:
go-git/go-git@v5.5.2...v5.6.0

</details>

<details>
<summary>jedib0t/go-pretty</summary>

###
[`v6.4.6`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.6)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.5...v6.4.6)

### Features

-   **table**
- honor border color overrides for title row
([#&#8203;260](https://togithub.com/jedib0t/go-pretty/issues/260))

###
[`v6.4.5`](https://togithub.com/jedib0t/go-pretty/releases/tag/v6.4.5)

[Compare
Source](https://togithub.com/jedib0t/go-pretty/compare/v6.4.4...v6.4.5)

### Features

-   **table**
- option to custom color borders/separators
([#&#8203;259](https://togithub.com/jedib0t/go-pretty/issues/259))
        -   `table.Style().Color.Border`
        -   `table.Style().Color.Separator`
-   **text**
- handle escape sequences that embed a URL
([#&#8203;256](https://togithub.com/jedib0t/go-pretty/issues/256)) //
thanks [@&#8203;vsemichev](https://togithub.com/vsemichev)

</details>

<details>
<summary>urfave/cli</summary>

### [`v2.25.0`](https://togithub.com/urfave/cli/releases/tag/v2.25.0)

[Compare
Source](https://togithub.com/urfave/cli/compare/v2.24.4...v2.25.0)

#### What's Changed

- Drop support for Go versions before 1.18 by
[@&#8203;meatballhat](https://togithub.com/meatballhat) in
[urfave/cli#1667
- add Integer type casting when loading yaml file by
[@&#8203;kjeom](https://togithub.com/kjeom) in
[urfave/cli#1669

#### New Contributors

- [@&#8203;kjeom](https://togithub.com/kjeom) made their first
contribution in
[urfave/cli#1669

**Full Changelog**:
urfave/cli@v2.24.4...v2.25.0

</details>

<details>
<summary>golang/mod</summary>

### [`v0.9.0`](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

[Compare
Source](https://togithub.com/golang/mod/compare/v0.8.0...v0.9.0)

</details>

<details>
<summary>golang/term</summary>

### [`v0.6.0`](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

[Compare
Source](https://togithub.com/golang/term/compare/v0.5.0...v0.6.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 6am on monday" in timezone
Australia/Sydney, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNDYuMiIsInVwZGF0ZWRJblZlciI6IjM0LjE0Ni4yIn0=-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants