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

Explicitly disable sparse checkout unless asked for #1598

Merged

Conversation

dscho
Copy link
Contributor

@dscho dscho commented Jan 31, 2024

When a worktree is reused by actions/checkout and the first time sparse checkout was enabled, we need to ensure that the second time it is only a sparse checkout if explicitly asked for. Otherwise we need to disable the sparse checkout so that a full checkout is the outcome of this Action.

This fixes #1475

This should allow users to reuse existing folders when running
`actions/checkout` where a previous run asked for a sparse checkout but
the current run does not ask for a sparse checkout.

This fixes actions#1475

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
@dscho dscho force-pushed the explicitly-disable-sparse-checkout-unless-asked-for branch from 29f6b52 to 79dd834 Compare January 31, 2024 14:04
@dscho dscho mentioned this pull request Jan 31, 2024
@dscho
Copy link
Contributor Author

dscho commented Jan 31, 2024

It looks as if the test-proxy job fails even without these here changes, so I'll call this PR good to go.

@dscho dscho marked this pull request as ready for review January 31, 2024 14:45
@dscho dscho requested a review from a team as a code owner January 31, 2024 14:45
There are use cases in particular with non-ephemeral runners where an
existing worktree (that has been initialized as a sparse checkout) is
reused in subsequent CI runs (where `actions/checkout` is run _without_
any `sparse-checkout` parameter).

In these scenarios, we need to make sure that the sparse checkout is
disabled before checking out the files.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
@dscho dscho force-pushed the explicitly-disable-sparse-checkout-unless-asked-for branch from 79dd834 to 6f108b2 Compare January 31, 2024 15:13
if (!settings.sparseCheckout) {
yield git.disableSparseCheckout();
}
else {
core.startGroup('Setting up sparse checkout');
Copy link
Contributor

@jww3 jww3 Feb 1, 2024

Choose a reason for hiding this comment

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

do you want to pop the .startGroup / .endGroup calls outside of the if block?

Consider core.startGroup('Applying sparse checkout options');

Copy link
Contributor Author

Choose a reason for hiding this comment

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

No, because we're not actually setting up a sparse checkout. We're disabling it. But saying that would only make sense if there was a worktree already, otherwise there'd be no sparse checkout to disable.

@jww3 jww3 self-assigned this Feb 1, 2024
@@ -175,7 +190,7 @@ jobs:
test-proxy:
runs-on: ubuntu-latest
container:
image: alpine/git:latest
image: fdev321123/ubuntu-with-git:latest
Copy link
Member

Choose a reason for hiding this comment

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

We should be very careful about adding in external dependencies to our workflows - https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions

If this is something we internally built, could we publish it to ghcr.io within this repository or org?

Copy link
Contributor

Choose a reason for hiding this comment

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

Agreed. This was something @fhammerl provided as a proof-of-concept, but I was just reading up about how to publish packages to ghcr.io and like the idea of hosting this container image at ghcr.io/actions (see neighboring packages here)

Racer159 pushed a commit to defenseunicorns/uds-package-postgres-operator that referenced this pull request Apr 30, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://github.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>defenseunicorns/uds-common
(defenseunicorns/uds-common)</summary>

###
[`v0.4.0`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.3.11...v0.4.0)

##### Features

- adds renovate to sh files
([#&#8203;110](https://github.com/defenseunicorns/uds-common/issues/110))
([b604d2e](https://github.com/defenseunicorns/uds-common/commit/b604d2e1b3fc69f29122f9a709c605f5ecf4da18))

##### Miscellaneous

- add a default to setup to create an admin keycloak user
([#&#8203;111](https://github.com/defenseunicorns/uds-common/issues/111))
([7fe0dd4](https://github.com/defenseunicorns/uds-common/commit/7fe0dd49a9b7032f9c06a83c5a1c6adbb17e8d63))
- **deps:** update uds common support dependencies
([#&#8203;106](https://github.com/defenseunicorns/uds-common/issues/106))
([ab06724](https://github.com/defenseunicorns/uds-common/commit/ab067245249e63065d2c266fe3b1a45b155e9de2))
- fix the extract version template for env vars
([#&#8203;115](https://github.com/defenseunicorns/uds-common/issues/115))
([72d5d26](https://github.com/defenseunicorns/uds-common/commit/72d5d263ce850eac20728eb9330c7b3e26143a2b))

</details>

<details>
<summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary>

###
[`v0.33.1`](https://github.com/defenseunicorns/zarf/compare/v0.33.0...v0.33.1)

[Compare
Source](https://github.com/defenseunicorns/zarf/compare/v0.33.0...v0.33.1)

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://github.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://developer.mend.io/github/defenseunicorns/uds-package-postgres-operator).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Racer159 pushed a commit to defenseunicorns/uds-package-gitlab that referenced this pull request Apr 30, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://github.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |
|
[renovatebot/pre-commit-hooks](https://github.com/renovatebot/pre-commit-hooks)
| repository | minor | `37.301.6` -> `37.329.0` |

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://github.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>defenseunicorns/uds-common
(defenseunicorns/uds-common)</summary>

###
[`v0.4.0`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.3.11...v0.4.0)

##### Features

- adds renovate to sh files
([#&#8203;110](https://github.com/defenseunicorns/uds-common/issues/110))
([b604d2e](https://github.com/defenseunicorns/uds-common/commit/b604d2e1b3fc69f29122f9a709c605f5ecf4da18))

##### Miscellaneous

- add a default to setup to create an admin keycloak user
([#&#8203;111](https://github.com/defenseunicorns/uds-common/issues/111))
([7fe0dd4](https://github.com/defenseunicorns/uds-common/commit/7fe0dd49a9b7032f9c06a83c5a1c6adbb17e8d63))
- **deps:** update uds common support dependencies
([#&#8203;106](https://github.com/defenseunicorns/uds-common/issues/106))
([ab06724](https://github.com/defenseunicorns/uds-common/commit/ab067245249e63065d2c266fe3b1a45b155e9de2))
- fix the extract version template for env vars
([#&#8203;115](https://github.com/defenseunicorns/uds-common/issues/115))
([72d5d26](https://github.com/defenseunicorns/uds-common/commit/72d5d263ce850eac20728eb9330c7b3e26143a2b))

</details>

<details>
<summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary>

###
[`v0.33.1`](https://github.com/defenseunicorns/zarf/releases/tag/v0.33.1)

[Compare
Source](https://github.com/defenseunicorns/zarf/compare/v0.33.0...v0.33.1)

#### What's Changed

- fix: add redirect so old zarf base link is compatiable by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2432
- ci: pin third-party gh actions by hash by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2433
- docs: add redirect for examples by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2438
- docs: update contributing and pre-commit by
[@&#8203;Noxsios](https://github.com/Noxsios) in
[zarf-dev/zarf#2439
- ci: fix revive image ref in lint workflow by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2436
- fix: filter on running pods when finding an image for injector pod by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2415
- fix: readme dead links by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2442
- fix: differential package create with non local sources by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2444
- refactor: move variables into separate package by
[@&#8203;Racer159](https://github.com/Racer159) in
[zarf-dev/zarf#2414
- ci: add top level workflow permission to commitlint by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2449
- ci: remove unused env var from codeql workflow by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2450
- chore: cleanup root level files and add SPDX check for Go files by
[@&#8203;Noxsios](https://github.com/Noxsios) in
[zarf-dev/zarf#2431
- feat: config to enable resilient registry by
[@&#8203;Michael-Kruggel](https://github.com/Michael-Kruggel) in
[zarf-dev/zarf#2440
- docs: init package clarity and cleanup by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2447
- ci: compare cves to main by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2448
- test: unpin version in bigbang extension test by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2459
- fix: broken schema from unexpanded embedded variables by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2458
- fix: error on create if an index sha is used by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2429

#### New Contributors

- [@&#8203;Michael-Kruggel](https://github.com/Michael-Kruggel) made
their first contribution in
[zarf-dev/zarf#2440

**Full Changelog**:
zarf-dev/zarf@v0.33.0...v0.33.1

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

</details>

<details>
<summary>renovatebot/pre-commit-hooks
(renovatebot/pre-commit-hooks)</summary>

###
[`v37.329.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.329.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.327.2...37.329.0)

See https://github.com/renovatebot/renovate/releases/tag/37.329.0 for
more changes

###
[`v37.327.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.327.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.3...37.327.2)

See https://github.com/renovatebot/renovate/releases/tag/37.327.2 for
more changes

###
[`v37.326.3`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.3)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.2...37.326.3)

See https://github.com/renovatebot/renovate/releases/tag/37.326.3 for
more changes

###
[`v37.326.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.1...37.326.2)

See https://github.com/renovatebot/renovate/releases/tag/37.326.2 for
more changes

###
[`v37.326.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.0...37.326.1)

See https://github.com/renovatebot/renovate/releases/tag/37.326.1 for
more changes

###
[`v37.326.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.325.1...37.326.0)

See https://github.com/renovatebot/renovate/releases/tag/37.326.0 for
more changes

###
[`v37.325.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.325.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.325.0...37.325.1)

See https://github.com/renovatebot/renovate/releases/tag/37.325.1 for
more changes

###
[`v37.325.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.325.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.2...37.325.0)

See https://github.com/renovatebot/renovate/releases/tag/37.325.0 for
more changes

###
[`v37.324.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.1...37.324.2)

See https://github.com/renovatebot/renovate/releases/tag/37.324.2 for
more changes

###
[`v37.324.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.0...37.324.1)

See https://github.com/renovatebot/renovate/releases/tag/37.324.1 for
more changes

###
[`v37.324.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.323.3...37.324.0)

See https://github.com/renovatebot/renovate/releases/tag/37.324.0 for
more changes

###
[`v37.323.3`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.323.3)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.323.1...37.323.3)

See https://github.com/renovatebot/renovate/releases/tag/37.323.3 for
more changes

###
[`v37.323.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.323.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.322.2...37.323.1)

See https://github.com/renovatebot/renovate/releases/tag/37.323.1 for
more changes

###
[`v37.322.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.322.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.2...37.322.2)

See https://github.com/renovatebot/renovate/releases/tag/37.322.2 for
more changes

###
[`v37.321.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.1...37.321.2)

See https://github.com/renovatebot/renovate/releases/tag/37.321.2 for
more changes

###
[`v37.321.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.0...37.321.1)

See https://github.com/renovatebot/renovate/releases/tag/37.321.1 for
more changes

###
[`v37.321.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.320.1...37.321.0)

See https://github.com/renovatebot/renovate/releases/tag/37.321.0 for
more changes

###
[`v37.320.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.320.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.320.0...37.320.1)

See https://github.com/renovatebot/renovate/releases/tag/37.320.1 for
more changes

###
[`v37.320.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.320.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.2...37.320.0)

See https://github.com/renovatebot/renovate/releases/tag/37.320.0 for
more changes

###
[`v37.319.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.1...37.319.2)

See https://github.com/renovatebot/renovate/releases/tag/37.319.2 for
more changes

###
[`v37.319.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.0...37.319.1)

See https://github.com/renovatebot/renovate/releases/tag/37.319.1 for
more changes

###
[`v37.319.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.318.1...37.319.0)

See https://github.com/renovatebot/renovate/releases/tag/37.319.0 for
more changes

###
[`v37.318.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.318.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.318.0...37.318.1)

See https://github.com/renovatebot/renovate/releases/tag/37.318.1 for
more changes

###
[`v37.318.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.318.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.316.2...37.318.0)

See https://github.com/renovatebot/renovate/releases/tag/37.318.0 for
more changes

###
[`v37.316.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.316.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.316.0...37.316.2)

See https://github.com/renovatebot/renovate/releases/tag/37.316.2 for
more changes

###
[`v37.316.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.316.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.315.1...37.316.0)

See https://github.com/renovatebot/renovate/releases/tag/37.316.0 for
more changes

###
[`v37.315.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.315.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.315.0...37.315.1)

See https://github.com/renovatebot/renovate/releases/tag/37.315.1 for
more changes

###
[`v37.315.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.315.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.314.0...37.315.0)

See https://github.com/renovatebot/renovate/releases/tag/37.315.0 for
more changes

###
[`v37.314.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.314.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.313.1...37.314.0)

See https://github.com/renovatebot/renovate/releases/tag/37.314.0 for
more changes

###
[`v37.313.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.313.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.313.0...37.313.1)

See https://github.com/renovatebot/renovate/releases/tag/37.313.1 for
more changes

###
[`v37.313.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.313.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.311.0...37.313.0)

See https://github.com/renovatebot/renovate/releases/tag/37.313.0 for
more changes

###
[`v37.311.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.311.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.310.1...37.311.0)

See https://github.com/renovatebot/renovate/releases/tag/37.311.0 for
more changes

###
[`v37.310.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.310.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.310.0...37.310.1)

See https://github.com/renovatebot/renovate/releases/tag/37.310.1 for
more changes

###
[`v37.310.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.310.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.309.0...37.310.0)

See https://github.com/renovatebot/renovate/releases/tag/37.310.0 for
more changes

###
[`v37.309.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.309.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.308.0...37.309.0)

See https://github.com/renovatebot/renovate/releases/tag/37.309.0 for
more changes

###
[`v37.308.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.308.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.306.1...37.308.0)

See https://github.com/renovatebot/renovate/releases/tag/37.308.0 for
more changes

###
[`v37.306.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.306.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.306.0...37.306.1)

See https://github.com/renovatebot/renovate/releases/tag/37.306.1 for
more changes

###
[`v37.306.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.306.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.305.0...37.306.0)

See https://github.com/renovatebot/renovate/releases/tag/37.306.0 for
more changes

###
[`v37.305.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.305.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.304.0...37.305.0)

See https://github.com/renovatebot/renovate/releases/tag/37.305.0 for
more changes

###
[`v37.304.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.304.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.303.2...37.304.0)

See https://github.com/renovatebot/renovate/releases/tag/37.304.0 for
more changes

###
[`v37.303.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.303.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.303.1...37.303.2)

See https://github.com/renovatebot/renovate/releases/tag/37.303.2 for
more changes

###
[`v37.303.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.303.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.302.0...37.303.1)

See https://github.com/renovatebot/renovate/releases/tag/37.303.1 for
more changes

###
[`v37.302.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.302.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.301.6...37.302.0)

See https://github.com/renovatebot/renovate/releases/tag/37.302.0 for
more changes

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 7am and before 9am every
weekday" in timezone America/New_York, 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://github.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://developer.mend.io/github/defenseunicorns/uds-package-gitlab).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Racer159 pushed a commit to defenseunicorns/uds-package-mattermost that referenced this pull request Apr 30, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/dependency-review-action](https://github.com/actions/dependency-review-action)
| action | minor | `v4.2.5` -> `v4.3.1` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://github.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |
|
[renovatebot/pre-commit-hooks](https://github.com/renovatebot/pre-commit-hooks)
| repository | minor | `37.301.6` -> `37.329.0` |
|
[step-security/harden-runner](https://github.com/step-security/harden-runner)
| action | patch | `v2.7.0` -> `v2.7.1` |

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://github.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/dependency-review-action
(actions/dependency-review-action)</summary>

###
[`v4.3.1`](https://github.com/actions/dependency-review-action/compare/v4.2.5...v4.3.1)

[Compare
Source](https://github.com/actions/dependency-review-action/compare/v4.3.0...v4.3.1)

###
[`v4.3.0`](https://github.com/actions/dependency-review-action/releases/tag/v4.3.0)

[Compare
Source](https://github.com/actions/dependency-review-action/compare/v4.2.5...v4.3.0)

#### New Features

- The `deny-packages` option can now be used without a version number to
exclude *all* versions of a package.

#### What's Changed

- Fix action variable name for scorecard by
[@&#8203;lukehinds](https://github.com/lukehinds) in
[actions/dependency-review-action#735
- Fix extra https:// in summary by
[@&#8203;jhutchings1](https://github.com/jhutchings1) in
[actions/dependency-review-action#748
- Bump typescript from 5.3.3 to 5.4.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/dependency-review-action#744
- Bump eslint-plugin-github from 4.10.1 to 4.10.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/dependency-review-action#737
- Show denied packages with red X by
[@&#8203;juxtin](https://github.com/juxtin) in
[actions/dependency-review-action#750
- deny-packages configuration option can deny specified version or all
packages by [@&#8203;febuiles](https://github.com/febuiles) and
[@&#8203;bteng22](https://github.com/bteng22) in
[actions/dependency-review-action#733

#### New Contributors

- [@&#8203;bteng22](https://github.com/bteng22) made their first
contribution in
[actions/dependency-review-action#733
- [@&#8203;lukehinds](https://github.com/lukehinds) made their first
contribution in
[actions/dependency-review-action#735

**Full Changelog**:
actions/dependency-review-action@v4.2.5...V4.3.0

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>defenseunicorns/uds-common
(defenseunicorns/uds-common)</summary>

###
[`v0.4.0`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.3.11...v0.4.0)

##### Features

- adds renovate to sh files
([#&#8203;110](https://github.com/defenseunicorns/uds-common/issues/110))
([b604d2e](https://github.com/defenseunicorns/uds-common/commit/b604d2e1b3fc69f29122f9a709c605f5ecf4da18))

##### Miscellaneous

- add a default to setup to create an admin keycloak user
([#&#8203;111](https://github.com/defenseunicorns/uds-common/issues/111))
([7fe0dd4](https://github.com/defenseunicorns/uds-common/commit/7fe0dd49a9b7032f9c06a83c5a1c6adbb17e8d63))
- **deps:** update uds common support dependencies
([#&#8203;106](https://github.com/defenseunicorns/uds-common/issues/106))
([ab06724](https://github.com/defenseunicorns/uds-common/commit/ab067245249e63065d2c266fe3b1a45b155e9de2))
- fix the extract version template for env vars
([#&#8203;115](https://github.com/defenseunicorns/uds-common/issues/115))
([72d5d26](https://github.com/defenseunicorns/uds-common/commit/72d5d263ce850eac20728eb9330c7b3e26143a2b))

</details>

<details>
<summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary>

###
[`v0.33.1`](https://github.com/defenseunicorns/zarf/releases/tag/v0.33.1)

[Compare
Source](https://github.com/defenseunicorns/zarf/compare/v0.33.0...v0.33.1)

#### What's Changed

- fix: add redirect so old zarf base link is compatiable by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2432
- ci: pin third-party gh actions by hash by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2433
- docs: add redirect for examples by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2438
- docs: update contributing and pre-commit by
[@&#8203;Noxsios](https://github.com/Noxsios) in
[zarf-dev/zarf#2439
- ci: fix revive image ref in lint workflow by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2436
- fix: filter on running pods when finding an image for injector pod by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2415
- fix: readme dead links by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2442
- fix: differential package create with non local sources by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2444
- refactor: move variables into separate package by
[@&#8203;Racer159](https://github.com/Racer159) in
[zarf-dev/zarf#2414
- ci: add top level workflow permission to commitlint by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2449
- ci: remove unused env var from codeql workflow by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2450
- chore: cleanup root level files and add SPDX check for Go files by
[@&#8203;Noxsios](https://github.com/Noxsios) in
[zarf-dev/zarf#2431
- feat: config to enable resilient registry by
[@&#8203;Michael-Kruggel](https://github.com/Michael-Kruggel) in
[zarf-dev/zarf#2440
- docs: init package clarity and cleanup by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2447
- ci: compare cves to main by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2448
- test: unpin version in bigbang extension test by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2459
- fix: broken schema from unexpanded embedded variables by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2458
- fix: error on create if an index sha is used by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2429

#### New Contributors

- [@&#8203;Michael-Kruggel](https://github.com/Michael-Kruggel) made
their first contribution in
[zarf-dev/zarf#2440

**Full Changelog**:
zarf-dev/zarf@v0.33.0...v0.33.1

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

</details>

<details>
<summary>renovatebot/pre-commit-hooks
(renovatebot/pre-commit-hooks)</summary>

###
[`v37.329.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.329.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.327.2...37.329.0)

See https://github.com/renovatebot/renovate/releases/tag/37.329.0 for
more changes

###
[`v37.327.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.327.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.3...37.327.2)

See https://github.com/renovatebot/renovate/releases/tag/37.327.2 for
more changes

###
[`v37.326.3`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.3)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.2...37.326.3)

See https://github.com/renovatebot/renovate/releases/tag/37.326.3 for
more changes

###
[`v37.326.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.1...37.326.2)

See https://github.com/renovatebot/renovate/releases/tag/37.326.2 for
more changes

###
[`v37.326.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.0...37.326.1)

See https://github.com/renovatebot/renovate/releases/tag/37.326.1 for
more changes

###
[`v37.326.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.325.1...37.326.0)

See https://github.com/renovatebot/renovate/releases/tag/37.326.0 for
more changes

###
[`v37.325.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.325.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.325.0...37.325.1)

See https://github.com/renovatebot/renovate/releases/tag/37.325.1 for
more changes

###
[`v37.325.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.325.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.2...37.325.0)

See https://github.com/renovatebot/renovate/releases/tag/37.325.0 for
more changes

###
[`v37.324.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.1...37.324.2)

See https://github.com/renovatebot/renovate/releases/tag/37.324.2 for
more changes

###
[`v37.324.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.0...37.324.1)

See https://github.com/renovatebot/renovate/releases/tag/37.324.1 for
more changes

###
[`v37.324.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.323.3...37.324.0)

See https://github.com/renovatebot/renovate/releases/tag/37.324.0 for
more changes

###
[`v37.323.3`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.323.3)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.323.1...37.323.3)

See https://github.com/renovatebot/renovate/releases/tag/37.323.3 for
more changes

###
[`v37.323.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.323.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.322.2...37.323.1)

See https://github.com/renovatebot/renovate/releases/tag/37.323.1 for
more changes

###
[`v37.322.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.322.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.2...37.322.2)

See https://github.com/renovatebot/renovate/releases/tag/37.322.2 for
more changes

###
[`v37.321.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.1...37.321.2)

See https://github.com/renovatebot/renovate/releases/tag/37.321.2 for
more changes

###
[`v37.321.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.0...37.321.1)

See https://github.com/renovatebot/renovate/releases/tag/37.321.1 for
more changes

###
[`v37.321.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.320.1...37.321.0)

See https://github.com/renovatebot/renovate/releases/tag/37.321.0 for
more changes

###
[`v37.320.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.320.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.320.0...37.320.1)

See https://github.com/renovatebot/renovate/releases/tag/37.320.1 for
more changes

###
[`v37.320.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.320.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.2...37.320.0)

See https://github.com/renovatebot/renovate/releases/tag/37.320.0 for
more changes

###
[`v37.319.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.1...37.319.2)

See https://github.com/renovatebot/renovate/releases/tag/37.319.2 for
more changes

###
[`v37.319.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.0...37.319.1)

See https://github.com/renovatebot/renovate/releases/tag/37.319.1 for
more changes

###
[`v37.319.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.318.1...37.319.0)

See https://github.com/renovatebot/renovate/releases/tag/37.319.0 for
more changes

###
[`v37.318.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.318.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.318.0...37.318.1)

See https://github.com/renovatebot/renovate/releases/tag/37.318.1 for
more changes

###
[`v37.318.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.318.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.316.2...37.318.0)

See https://github.com/renovatebot/renovate/releases/tag/37.318.0 for
more changes

###
[`v37.316.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.316.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.316.0...37.316.2)

See https://github.com/renovatebot/renovate/releases/tag/37.316.2 for
more changes

###
[`v37.316.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.316.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.315.1...37.316.0)

See https://github.com/renovatebot/renovate/releases/tag/37.316.0 for
more changes

###
[`v37.315.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.315.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.315.0...37.315.1)

See https://github.com/renovatebot/renovate/releases/tag/37.315.1 for
more changes

###
[`v37.315.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.315.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.314.0...37.315.0)

See https://github.com/renovatebot/renovate/releases/tag/37.315.0 for
more changes

###
[`v37.314.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.314.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.313.1...37.314.0)

See https://github.com/renovatebot/renovate/releases/tag/37.314.0 for
more changes

###
[`v37.313.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.313.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.313.0...37.313.1)

See https://github.com/renovatebot/renovate/releases/tag/37.313.1 for
more changes

###
[`v37.313.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.313.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.311.0...37.313.0)

See https://github.com/renovatebot/renovate/releases/tag/37.313.0 for
more changes

###
[`v37.311.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.311.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.310.1...37.311.0)

See https://github.com/renovatebot/renovate/releases/tag/37.311.0 for
more changes

###
[`v37.310.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.310.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.310.0...37.310.1)

See https://github.com/renovatebot/renovate/releases/tag/37.310.1 for
more changes

###
[`v37.310.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.310.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.309.0...37.310.0)

See https://github.com/renovatebot/renovate/releases/tag/37.310.0 for
more changes

###
[`v37.309.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.309.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.308.0...37.309.0)

See https://github.com/renovatebot/renovate/releases/tag/37.309.0 for
more changes

###
[`v37.308.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.308.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.306.1...37.308.0)

See https://github.com/renovatebot/renovate/releases/tag/37.308.0 for
more changes

###
[`v37.306.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.306.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.306.0...37.306.1)

See https://github.com/renovatebot/renovate/releases/tag/37.306.1 for
more changes

###
[`v37.306.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.306.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.305.0...37.306.0)

See https://github.com/renovatebot/renovate/releases/tag/37.306.0 for
more changes

###
[`v37.305.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.305.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.304.0...37.305.0)

See https://github.com/renovatebot/renovate/releases/tag/37.305.0 for
more changes

###
[`v37.304.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.304.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.303.2...37.304.0)

See https://github.com/renovatebot/renovate/releases/tag/37.304.0 for
more changes

###
[`v37.303.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.303.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.303.1...37.303.2)

See https://github.com/renovatebot/renovate/releases/tag/37.303.2 for
more changes

###
[`v37.303.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.303.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.302.0...37.303.1)

See https://github.com/renovatebot/renovate/releases/tag/37.303.1 for
more changes

###
[`v37.302.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.302.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.301.6...37.302.0)

See https://github.com/renovatebot/renovate/releases/tag/37.302.0 for
more changes

</details>

<details>
<summary>step-security/harden-runner
(step-security/harden-runner)</summary>

###
[`v2.7.1`](https://github.com/step-security/harden-runner/releases/tag/v2.7.1)

[Compare
Source](https://github.com/step-security/harden-runner/compare/v2.7.0...v2.7.1)

##### What's Changed

Release v2.7.1 by
[@&#8203;varunsh-coder](https://github.com/varunsh-coder),
[@&#8203;h0x0er](https://github.com/h0x0er),
[@&#8203;ashishkurmi](https://github.com/ashishkurmi) in
[step-security/harden-runner#397
This release:

- Improves the capability to [inspect outbound HTTPS
traffic](https://www.stepsecurity.io/blog/monitor-outbound-https-requests-from-github-actions-runners)
on GitHub-hosted and self-hosted VM runners
- Updates README to add link to [case study
video](https://www.youtube.com/watch?v=Yz72qAOrN9s) on how Harden-Runner
detected a supply chain attack on a Google open-source project
-   Addresses minor bugs

**Full Changelog**:
step-security/harden-runner@v2.7.0...v2.7.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://github.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://developer.mend.io/github/defenseunicorns/uds-package-mattermost).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Racer159 pushed a commit to defenseunicorns/uds-package-sonarqube that referenced this pull request Apr 30, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://github.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |
|
[renovatebot/pre-commit-hooks](https://github.com/renovatebot/pre-commit-hooks)
| repository | minor | `37.301.6` -> `37.329.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://github.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>defenseunicorns/uds-common
(defenseunicorns/uds-common)</summary>

###
[`v0.4.0`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.3.11...v0.4.0)

##### Features

- adds renovate to sh files
([#&#8203;110](https://github.com/defenseunicorns/uds-common/issues/110))
([b604d2e](https://github.com/defenseunicorns/uds-common/commit/b604d2e1b3fc69f29122f9a709c605f5ecf4da18))

##### Miscellaneous

- add a default to setup to create an admin keycloak user
([#&#8203;111](https://github.com/defenseunicorns/uds-common/issues/111))
([7fe0dd4](https://github.com/defenseunicorns/uds-common/commit/7fe0dd49a9b7032f9c06a83c5a1c6adbb17e8d63))
- **deps:** update uds common support dependencies
([#&#8203;106](https://github.com/defenseunicorns/uds-common/issues/106))
([ab06724](https://github.com/defenseunicorns/uds-common/commit/ab067245249e63065d2c266fe3b1a45b155e9de2))
- fix the extract version template for env vars
([#&#8203;115](https://github.com/defenseunicorns/uds-common/issues/115))
([72d5d26](https://github.com/defenseunicorns/uds-common/commit/72d5d263ce850eac20728eb9330c7b3e26143a2b))

</details>

<details>
<summary>defenseunicorns/zarf (defenseunicorns/zarf)</summary>

###
[`v0.33.1`](https://github.com/defenseunicorns/zarf/releases/tag/v0.33.1)

[Compare
Source](https://github.com/defenseunicorns/zarf/compare/v0.33.0...v0.33.1)

#### What's Changed

- fix: add redirect so old zarf base link is compatiable by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2432
- ci: pin third-party gh actions by hash by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2433
- docs: add redirect for examples by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2438
- docs: update contributing and pre-commit by
[@&#8203;Noxsios](https://github.com/Noxsios) in
[zarf-dev/zarf#2439
- ci: fix revive image ref in lint workflow by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2436
- fix: filter on running pods when finding an image for injector pod by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2415
- fix: readme dead links by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2442
- fix: differential package create with non local sources by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2444
- refactor: move variables into separate package by
[@&#8203;Racer159](https://github.com/Racer159) in
[zarf-dev/zarf#2414
- ci: add top level workflow permission to commitlint by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2449
- ci: remove unused env var from codeql workflow by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2450
- chore: cleanup root level files and add SPDX check for Go files by
[@&#8203;Noxsios](https://github.com/Noxsios) in
[zarf-dev/zarf#2431
- feat: config to enable resilient registry by
[@&#8203;Michael-Kruggel](https://github.com/Michael-Kruggel) in
[zarf-dev/zarf#2440
- docs: init package clarity and cleanup by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2447
- ci: compare cves to main by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2448
- test: unpin version in bigbang extension test by
[@&#8203;lucasrod16](https://github.com/lucasrod16) in
[zarf-dev/zarf#2459
- fix: broken schema from unexpanded embedded variables by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2458
- fix: error on create if an index sha is used by
[@&#8203;AustinAbro321](https://github.com/AustinAbro321) in
[zarf-dev/zarf#2429

#### New Contributors

- [@&#8203;Michael-Kruggel](https://github.com/Michael-Kruggel) made
their first contribution in
[zarf-dev/zarf#2440

**Full Changelog**:
zarf-dev/zarf@v0.33.0...v0.33.1

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

</details>

<details>
<summary>renovatebot/pre-commit-hooks
(renovatebot/pre-commit-hooks)</summary>

###
[`v37.329.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.329.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.327.2...37.329.0)

See https://github.com/renovatebot/renovate/releases/tag/37.329.0 for
more changes

###
[`v37.327.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.327.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.3...37.327.2)

See https://github.com/renovatebot/renovate/releases/tag/37.327.2 for
more changes

###
[`v37.326.3`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.3)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.2...37.326.3)

See https://github.com/renovatebot/renovate/releases/tag/37.326.3 for
more changes

###
[`v37.326.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.1...37.326.2)

See https://github.com/renovatebot/renovate/releases/tag/37.326.2 for
more changes

###
[`v37.326.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.326.0...37.326.1)

See https://github.com/renovatebot/renovate/releases/tag/37.326.1 for
more changes

###
[`v37.326.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.326.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.325.1...37.326.0)

See https://github.com/renovatebot/renovate/releases/tag/37.326.0 for
more changes

###
[`v37.325.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.325.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.325.0...37.325.1)

See https://github.com/renovatebot/renovate/releases/tag/37.325.1 for
more changes

###
[`v37.325.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.325.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.2...37.325.0)

See https://github.com/renovatebot/renovate/releases/tag/37.325.0 for
more changes

###
[`v37.324.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.1...37.324.2)

See https://github.com/renovatebot/renovate/releases/tag/37.324.2 for
more changes

###
[`v37.324.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.324.0...37.324.1)

See https://github.com/renovatebot/renovate/releases/tag/37.324.1 for
more changes

###
[`v37.324.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.324.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.323.3...37.324.0)

See https://github.com/renovatebot/renovate/releases/tag/37.324.0 for
more changes

###
[`v37.323.3`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.323.3)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.323.1...37.323.3)

See https://github.com/renovatebot/renovate/releases/tag/37.323.3 for
more changes

###
[`v37.323.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.323.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.322.2...37.323.1)

See https://github.com/renovatebot/renovate/releases/tag/37.323.1 for
more changes

###
[`v37.322.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.322.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.2...37.322.2)

See https://github.com/renovatebot/renovate/releases/tag/37.322.2 for
more changes

###
[`v37.321.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.1...37.321.2)

See https://github.com/renovatebot/renovate/releases/tag/37.321.2 for
more changes

###
[`v37.321.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.321.0...37.321.1)

See https://github.com/renovatebot/renovate/releases/tag/37.321.1 for
more changes

###
[`v37.321.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.321.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.320.1...37.321.0)

See https://github.com/renovatebot/renovate/releases/tag/37.321.0 for
more changes

###
[`v37.320.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.320.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.320.0...37.320.1)

See https://github.com/renovatebot/renovate/releases/tag/37.320.1 for
more changes

###
[`v37.320.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.320.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.2...37.320.0)

See https://github.com/renovatebot/renovate/releases/tag/37.320.0 for
more changes

###
[`v37.319.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.1...37.319.2)

See https://github.com/renovatebot/renovate/releases/tag/37.319.2 for
more changes

###
[`v37.319.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.319.0...37.319.1)

See https://github.com/renovatebot/renovate/releases/tag/37.319.1 for
more changes

###
[`v37.319.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.319.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.318.1...37.319.0)

See https://github.com/renovatebot/renovate/releases/tag/37.319.0 for
more changes

###
[`v37.318.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.318.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.318.0...37.318.1)

See https://github.com/renovatebot/renovate/releases/tag/37.318.1 for
more changes

###
[`v37.318.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.318.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.316.2...37.318.0)

See https://github.com/renovatebot/renovate/releases/tag/37.318.0 for
more changes

###
[`v37.316.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.316.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.316.0...37.316.2)

See https://github.com/renovatebot/renovate/releases/tag/37.316.2 for
more changes

###
[`v37.316.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.316.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.315.1...37.316.0)

See https://github.com/renovatebot/renovate/releases/tag/37.316.0 for
more changes

###
[`v37.315.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.315.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.315.0...37.315.1)

See https://github.com/renovatebot/renovate/releases/tag/37.315.1 for
more changes

###
[`v37.315.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.315.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.314.0...37.315.0)

See https://github.com/renovatebot/renovate/releases/tag/37.315.0 for
more changes

###
[`v37.314.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.314.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.313.1...37.314.0)

See https://github.com/renovatebot/renovate/releases/tag/37.314.0 for
more changes

###
[`v37.313.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.313.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.313.0...37.313.1)

See https://github.com/renovatebot/renovate/releases/tag/37.313.1 for
more changes

###
[`v37.313.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.313.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.311.0...37.313.0)

See https://github.com/renovatebot/renovate/releases/tag/37.313.0 for
more changes

###
[`v37.311.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.311.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.310.1...37.311.0)

See https://github.com/renovatebot/renovate/releases/tag/37.311.0 for
more changes

###
[`v37.310.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.310.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.310.0...37.310.1)

See https://github.com/renovatebot/renovate/releases/tag/37.310.1 for
more changes

###
[`v37.310.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.310.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.309.0...37.310.0)

See https://github.com/renovatebot/renovate/releases/tag/37.310.0 for
more changes

###
[`v37.309.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.309.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.308.0...37.309.0)

See https://github.com/renovatebot/renovate/releases/tag/37.309.0 for
more changes

###
[`v37.308.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.308.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.306.1...37.308.0)

See https://github.com/renovatebot/renovate/releases/tag/37.308.0 for
more changes

###
[`v37.306.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.306.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.306.0...37.306.1)

See https://github.com/renovatebot/renovate/releases/tag/37.306.1 for
more changes

###
[`v37.306.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.306.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.305.0...37.306.0)

See https://github.com/renovatebot/renovate/releases/tag/37.306.0 for
more changes

###
[`v37.305.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.305.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.304.0...37.305.0)

See https://github.com/renovatebot/renovate/releases/tag/37.305.0 for
more changes

###
[`v37.304.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.304.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.303.2...37.304.0)

See https://github.com/renovatebot/renovate/releases/tag/37.304.0 for
more changes

###
[`v37.303.2`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.303.2)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.303.1...37.303.2)

See https://github.com/renovatebot/renovate/releases/tag/37.303.2 for
more changes

###
[`v37.303.1`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.303.1)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.302.0...37.303.1)

See https://github.com/renovatebot/renovate/releases/tag/37.303.1 for
more changes

###
[`v37.302.0`](https://github.com/renovatebot/pre-commit-hooks/releases/tag/37.302.0)

[Compare
Source](https://github.com/renovatebot/pre-commit-hooks/compare/37.301.6...37.302.0)

See https://github.com/renovatebot/renovate/releases/tag/37.302.0 for
more changes

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://github.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://developer.mend.io/github/defenseunicorns/uds-package-sonarqube).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJzdXBwb3J0LWRlcHMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Kislovskiy added a commit to Kislovskiy/talks that referenced this pull request Apr 30, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/Kislovskiy/talks).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
github-merge-queue bot pushed a commit to knope-dev/knope that referenced this pull request May 1, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | | patch |
`v4.1.1` -> `v4.1.4` |
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- 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://developer.mend.io/github/knope-dev/knope).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
robarnold pushed a commit to marinatedconcrete/config that referenced this pull request May 3, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/marinatedconcrete/config).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMzEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
peterjokumsen added a commit to helderberg-pirates-baseball/websites that referenced this pull request May 5, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[renovatebot/github-action](https://github.com/renovatebot/github-action)
| action | patch | `v40.1.7` -> `v40.1.11` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v413)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685
- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>renovatebot/github-action (renovatebot/github-action)</summary>

###
[`v40.1.11`](https://github.com/renovatebot/github-action/releases/tag/v40.1.11)

[Compare
Source](https://github.com/renovatebot/github-action/compare/v40.1.10...v40.1.11)

##### Documentation

- update references to actions/checkout to v4.1.4
([d872752](https://github.com/renovatebot/github-action/commit/d87275214631897c8acfc9d42a06bc5485c06db3))
- update references to ghcr.io/renovatebot/renovate to v37.315.1
([a1fe7a1](https://github.com/renovatebot/github-action/commit/a1fe7a1225a75a8a5a013414e8e4f73935d35934))
- update references to ghcr.io/renovatebot/renovate to v37.326.3
([27e98f6](https://github.com/renovatebot/github-action/commit/27e98f62dfd155f9f3185bf75136fbe95fa76093))
- update references to renovatebot/github-action to v40.1.10
([1643e4f](https://github.com/renovatebot/github-action/commit/1643e4fbf3aa294ca4cc38d52a4089c5d2d53937))

##### Miscellaneous Chores

- **deps:** update dependency prettier-plugin-packagejson to v2.5.0
([#&#8203;831](https://github.com/renovatebot/github-action/issues/831))
([5ff5adb](https://github.com/renovatebot/github-action/commit/5ff5adbb3827eba9b46c9356540dadfda5cef7b5))
- **deps:** update pnpm to v8.15.7
([0d9fba9](https://github.com/renovatebot/github-action/commit/0d9fba957a71be93257d996ab6bc592de4f83fb3))

##### Build System

- **deps:** lock file maintenance
([a1ea95c](https://github.com/renovatebot/github-action/commit/a1ea95c8434c327b487c2baf676a8974b536b5cf))

##### Continuous Integration

- **deps:** update actions/checkout action to v4.1.3
([7f9fed8](https://github.com/renovatebot/github-action/commit/7f9fed87c578bfdb8f9f73bb284825672f5c06e7))
- **deps:** update actions/checkout action to v4.1.4
([5ab77aa](https://github.com/renovatebot/github-action/commit/5ab77aaf926ea90aecb6d5d23c1925d28fd46243))
- **deps:** update renovate docker tag to v37.303.2
([1cf7f03](https://github.com/renovatebot/github-action/commit/1cf7f0398dc010b5d59fbad89a68700ff874cfd8))
- **deps:** update renovate docker tag to v37.304.0
([af9a72e](https://github.com/renovatebot/github-action/commit/af9a72e753d4c36f5113b83a55b72ea04625dc56))
- **deps:** update renovate docker tag to v37.306.1
([6d4d871](https://github.com/renovatebot/github-action/commit/6d4d871b2e78ef905410fd22c7dd2c9097f2bc0e))
- **deps:** update renovate docker tag to v37.308.0
([c4b5f15](https://github.com/renovatebot/github-action/commit/c4b5f15cfd828d56b8c1cfb1fd96faf7600ccb94))
- **deps:** update renovate docker tag to v37.309.0
([1b4de2e](https://github.com/renovatebot/github-action/commit/1b4de2eef163fc3021abe45d8a71eaeaedd60fed))
- **deps:** update renovate docker tag to v37.310.1
([a4892bf](https://github.com/renovatebot/github-action/commit/a4892bf178efc603ba88d8dee5eac6f1af491e65))
- **deps:** update renovate docker tag to v37.311.0
([479a3a1](https://github.com/renovatebot/github-action/commit/479a3a1b98a8e090c4f8467fb42d09eff602cf76))
- **deps:** update renovate docker tag to v37.313.1
([5ed892a](https://github.com/renovatebot/github-action/commit/5ed892a823ed73cf55076f1621491d5d3da2cb00))
- **deps:** update renovate docker tag to v37.314.0
([6dc3fea](https://github.com/renovatebot/github-action/commit/6dc3fea01fa755fcb6aeea27272cac743e165867))
- **deps:** update renovate docker tag to v37.315.0
([736e786](https://github.com/renovatebot/github-action/commit/736e7867872bf1e2d5a23f82db87e9a5bad5d9e7))
- **deps:** update renovate docker tag to v37.315.1
([1b46e5b](https://github.com/renovatebot/github-action/commit/1b46e5b1bb9127055786b52a253a3effb1a4fe6f))
- **deps:** update renovate docker tag to v37.317.0
([1c14ccc](https://github.com/renovatebot/github-action/commit/1c14cccf6629fc7e8734d4f378207a8936809b92))
- **deps:** update renovate docker tag to v37.318.0
([a7435b7](https://github.com/renovatebot/github-action/commit/a7435b7459e97081e1b444130b23c40b3236a0ec))
- **deps:** update renovate docker tag to v37.318.1
([9084b6b](https://github.com/renovatebot/github-action/commit/9084b6b0a5727b1a8a379fd66dce0c2bd20bc22f))
- **deps:** update renovate docker tag to v37.319.0
([38d30c8](https://github.com/renovatebot/github-action/commit/38d30c859a990d7bea32a1f8fa0ced26953fa870))
- **deps:** update renovate docker tag to v37.319.1
([f9a7eb8](https://github.com/renovatebot/github-action/commit/f9a7eb87e452d56836896c4005fc00131c46631b))
- **deps:** update renovate docker tag to v37.320.1
([74049ce](https://github.com/renovatebot/github-action/commit/74049cef73fd4368919ec65b089328773eee2b97))
- **deps:** update renovate docker tag to v37.321.1
([1c850f6](https://github.com/renovatebot/github-action/commit/1c850f6328d3cbbd9b540c8ad65c34c9e52dbca6))
- **deps:** update renovate docker tag to v37.321.2
([3c3ec5b](https://github.com/renovatebot/github-action/commit/3c3ec5b0e1eaa158f33e561774d6352ba57a9b23))
- **deps:** update renovate docker tag to v37.323.0
([e6820b8](https://github.com/renovatebot/github-action/commit/e6820b8259a44ecfa6d7459b599ac7338fc67eb8))
- **deps:** update renovate docker tag to v37.323.1
([7294f1a](https://github.com/renovatebot/github-action/commit/7294f1aa7fcb75f06f38d9e9122d76c15ba47321))
- **deps:** update renovate docker tag to v37.323.3
([761b7a9](https://github.com/renovatebot/github-action/commit/761b7a980239fd23a5364438c824883769194c05))
- **deps:** update renovate docker tag to v37.324.2
([751b7b3](https://github.com/renovatebot/github-action/commit/751b7b32771ad9a2526c6fd73f264866c54af9ad))
- **deps:** update renovate docker tag to v37.325.1
([afbc6f0](https://github.com/renovatebot/github-action/commit/afbc6f076d6e87006e888ea4f85ea5129b16d580))
- **deps:** update renovate docker tag to v37.326.0
([c103089](https://github.com/renovatebot/github-action/commit/c103089cc0bb8beac4b2ff6cd345aee4f8b1cadc))
- **deps:** update renovate docker tag to v37.326.1
([eb1a238](https://github.com/renovatebot/github-action/commit/eb1a23815ff7d24f827e5a77c3a70fa54bddcd63))
- **deps:** update renovate docker tag to v37.326.2
([5cfb005](https://github.com/renovatebot/github-action/commit/5cfb0054bf3d73d66429b558ea0474fafd7df5bd))
- **deps:** update renovate docker tag to v37.326.3
([439db7f](https://github.com/renovatebot/github-action/commit/439db7fed814793513df932e9d1ea9f1390b0aac))

###
[`v40.1.10`](https://github.com/renovatebot/github-action/releases/tag/v40.1.10)

[Compare
Source](https://github.com/renovatebot/github-action/compare/v40.1.9...v40.1.10)

##### Documentation

- update references to ghcr.io/renovatebot/renovate to v37.296.0
([28c9d13](https://github.com/renovatebot/github-action/commit/28c9d1328d2b9927865b827c219075768a539340))
- update references to renovatebot/github-action to v40.1.9
([e56f8be](https://github.com/renovatebot/github-action/commit/e56f8be2d72af37f84ccb5e513860984f1f81857))

##### Miscellaneous Chores

- **deps:** update dependency
[@&#8203;types/node](https://github.com/types/node) to v20.12.5
([6493f07](https://github.com/renovatebot/github-action/commit/6493f07369257de4d9100fe578b03b33329ff21b))
- **deps:** update dependency
[@&#8203;types/node](https://github.com/types/node) to v20.12.6
([5e0357e](https://github.com/renovatebot/github-action/commit/5e0357eaea9ee388abccd1c2907c6a411742f267))
- **deps:** update dependency
[@&#8203;types/node](https://github.com/types/node) to v20.12.7
([0bab1e7](https://github.com/renovatebot/github-action/commit/0bab1e7522cfddb0a034fcd9216ed1320aa26175))
- **deps:** update dependency semantic-release to v23.0.8
([d257912](https://github.com/renovatebot/github-action/commit/d257912e3602913b3620ba536a8cd03c6ff7d243))

##### Build System

- **deps:** update dependency typescript to v5.4.5
([9f91d7c](https://github.com/renovatebot/github-action/commit/9f91d7c7d60df9607c7a4d7287fc1baef74064bb))

##### Continuous Integration

- **deps:** update renovate docker tag to v37.288.0
([2f815db](https://github.com/renovatebot/github-action/commit/2f815db47f6db847946a0441b4886c409332fbb1))
- **deps:** update renovate docker tag to v37.290.1
([bd23b98](https://github.com/renovatebot/github-action/commit/bd23b986d5b4de145eb4c28d61f9ff287b850972))
- **deps:** update renovate docker tag to v37.291.0
([723c2d4](https://github.com/renovatebot/github-action/commit/723c2d48c3b12ca1e2f7986fba096b5a6b768e35))
- **deps:** update renovate docker tag to v37.292.0
([e5a18cd](https://github.com/renovatebot/github-action/commit/e5a18cdb82a6be46f88f2880481ee655ebb5d03d))
- **deps:** update renovate docker tag to v37.292.1
([98e5856](https://github.com/renovatebot/github-action/commit/98e5856fcb2fc9f8abc88c07c30d9f130fd1b84a))
- **deps:** update renovate docker tag to v37.293.0
([5a8e3f9](https://github.com/renovatebot/github-action/commit/5a8e3f98d8f30d0046ab4b30984b3b8999461bba))
- **deps:** update renovate docker tag to v37.295.0
([3c412db](https://github.com/renovatebot/github-action/commit/3c412db429a28bffe7de6243ae16873436976e01))
- **deps:** update renovate docker tag to v37.296.0
([8f9c0fe](https://github.com/renovatebot/github-action/commit/8f9c0fe0dca1e3a8c647334b9158ac514048dd21))
- **deps:** update renovate docker tag to v37.300.0
([3d3b001](https://github.com/renovatebot/github-action/commit/3d3b001d350731a085ce33a8afea13441f03ba86))
- **deps:** update renovate docker tag to v37.301.5
([19373a3](https://github.com/renovatebot/github-action/commit/19373a3d47a6482d224dc7172aabe49119e881e0))

###
[`v40.1.9`](https://github.com/renovatebot/github-action/releases/tag/v40.1.9)

[Compare
Source](https://github.com/renovatebot/github-action/compare/v40.1.8...v40.1.9)

##### Miscellaneous Chores

- **deps:** update dependency
[@&#8203;types/node](https://github.com/types/node) to v20.12.3
([7b1ea0c](https://github.com/renovatebot/github-action/commit/7b1ea0cd272974dabceacd7f27427a3c9496cbf8))
- **deps:** update dependency
[@&#8203;types/node](https://github.com/types/node) to v20.12.4
([2fec6dc](https://github.com/renovatebot/github-action/commit/2fec6dc99d056ea8850283e02bc4e75aab009832))
- **deps:** update dependency semantic-release to v23.0.7
([9dca132](https://github.com/renovatebot/github-action/commit/9dca132dafa105c55b2da60476332f0534413c23))
- **deps:** update pnpm to v8.15.6
([94fbc93](https://github.com/renovatebot/github-action/commit/94fbc93bc95f01d659854f6f0c738d2576244254))

##### Build System

- **deps:** update dependency typescript to v5.4.4
([1c8651a](https://github.com/renovatebot/github-action/commit/1c8651adc5c1f6409335f7081dd611220d8a4303))

##### Continuous Integration

- **deps:** update renovate docker tag to v37.281.2
([6dd9a73](https://github.com/renovatebot/github-action/commit/6dd9a73ca11d920ad46628d16bf53dc66d63d634))
- **deps:** update renovate docker tag to v37.284.0
([731c861](https://github.com/renovatebot/github-action/commit/731c86105ebaac6887a2d9ca9b012189e818f082))
- **deps:** update renovate docker tag to v37.286.1
([04d3673](https://github.com/renovatebot/github-action/commit/04d36734e081ad2619a64511b8c475e4391a01ea))

###
[`v40.1.8`](https://github.com/renovatebot/github-action/releases/tag/v40.1.8)

[Compare
Source](https://github.com/renovatebot/github-action/compare/v40.1.7...v40.1.8)

##### Documentation

- update references to ghcr.io/renovatebot/renovate to v37.278.2
([cab4404](https://github.com/renovatebot/github-action/commit/cab4404ce1020d2c321583982926de65e3c16666))
- update references to ghcr.io/renovatebot/renovate to v37.280.0
([a127536](https://github.com/renovatebot/github-action/commit/a1275366196c84042fff0c67e6c0a43d61822e76))
- update references to renovatebot/github-action to v40.1.7
([d22441a](https://github.com/renovatebot/github-action/commit/d22441ac433a295b98775498049fbdf0ef0fe7cd))

##### Miscellaneous Chores

- **deps:** update dependency
[@&#8203;tsconfig/node20](https://github.com/tsconfig/node20) to
v20.1.3
([1321a53](https://github.com/renovatebot/github-action/commit/1321a53c5729efa85a97dfe17015939bdaba05be))
- **deps:** update dependency
[@&#8203;tsconfig/node20](https://github.com/tsconfig/node20) to
v20.1.4
([b0ca6f1](https://github.com/renovatebot/github-action/commit/b0ca6f1885a4588a2198c027896d058ba2981b3e))
- **deps:** update dependency
[@&#8203;types/node](https://github.com/types/node) to v20.12.2
([#&#8203;832](https://github.com/renovatebot/github-action/issues/832))
([6ae57b5](https://github.com/renovatebot/github-action/commit/6ae57b578f2f2bd05e8e5ab0064de8c7000e7fc7))
- **deps:** update dependency semantic-release to v23.0.6
([7f4a000](https://github.com/renovatebot/github-action/commit/7f4a0009d083a11fdf8d093a077b8eab9cd76efa))

##### Build System

- **deps:** lock file maintenance
([3616bae](https://github.com/renovatebot/github-action/commit/3616baeff71850b7686574a74141c8649d27f6ba))

##### Continuous Integration

- **deps:** update renovate docker tag to v37.273.0
([c51b80f](https://github.com/renovatebot/github-action/commit/c51b80fd749ae62b563a1de35fd692039e96e8ef))
- **deps:** update renovate docker tag to v37.274.0
([b2ebf3c](https://github.com/renovatebot/github-action/commit/b2ebf3c4f50cc10d20b4e2011049c5ac6f5f0e8a))
- **deps:** update renovate docker tag to v37.275.0
([af64d16](https://github.com/renovatebot/github-action/commit/af64d164d98f85976133806fe7546cf2deb7e8ce))
- **deps:** update renovate docker tag to v37.276.0
([237ae15](https://github.com/renovatebot/github-action/commit/237ae15c8785ca4872b72d3e7b231df2973812aa))
- **deps:** update renovate docker tag to v37.278.0
([40ecdff](https://github.com/renovatebot/github-action/commit/40ecdff0915595f9454ef925bcb00b07fc7a7e0e))
- **deps:** update renovate docker tag to v37.278.1
([f37ba0e](https://github.com/renovatebot/github-action/commit/f37ba0ea86368ce72ec6f46a9a6eaa109e306927))
- **deps:** update renovate docker tag to v37.278.2
([6a3fc4d](https://github.com/renovatebot/github-action/commit/6a3fc4ddf6da44091fd0b0dba0d4d333f56e41fa))
- **deps:** update renovate docker tag to v37.279.0
([fef62b0](https://github.com/renovatebot/github-action/commit/fef62b0f4f13ea0a039b06fbe8f23c8d3158bfba))
- **deps:** update renovate docker tag to v37.279.3
([92ff63d](https://github.com/renovatebot/github-action/commit/92ff63d4cdf33a6487fd0ed26f8cb966704eec2c))
- **deps:** update renovate docker tag to v37.279.4
([2282c9e](https://github.com/renovatebot/github-action/commit/2282c9e6abc316a48aa4f5b70add10833aec8166))
- **deps:** update renovate docker tag to v37.280.0
([fe00f16](https://github.com/renovatebot/github-action/commit/fe00f1666294964f3f72e5f5da45ffeb4a9e0e4b))
- **deps:** update wagoid/commitlint-github-action action to v5.4.6
([a0f0a2e](https://github.com/renovatebot/github-action/commit/a0f0a2e467a7f35369c9bf33c7b9236fb2e6f3fa))
- **deps:** update wagoid/commitlint-github-action action to v5.5.1
([844d151](https://github.com/renovatebot/github-action/commit/844d151665234b566d059f04bb3e98bced0ac76e))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At
any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://github.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 [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM0Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: Renovate Bot GitHub <bot@renovateapp.com>
another-rex pushed a commit to google/osv-scanner that referenced this pull request May 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/download-artifact](https://github.com/actions/download-artifact)
| action | patch | `v4.1.4` -> `v4.1.7` |
| [actions/setup-go](https://github.com/actions/setup-go) | action |
patch | `v5.0.0` -> `v5.0.1` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action)
| action | patch | `v4.3.0` -> `v4.3.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | minor | `v3.24.10` -> `v3.25.3` |
|
[golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action)
| action | patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/download-artifact (actions/download-artifact)</summary>

###
[`v4.1.7`](https://github.com/actions/download-artifact/releases/tag/v4.1.7)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://github.com/actions/artifact)
dependency by [@&#8203;bethanyj28](https://github.com/bethanyj28) in
[actions/download-artifact#325

**Full Changelog**:
actions/download-artifact@v4.1.6...v4.1.7

###
[`v4.1.6`](https://github.com/actions/download-artifact/releases/tag/v4.1.6)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6)

#### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/download-artifact#324

**Full Changelog**:
actions/download-artifact@v4.1.5...v4.1.6

###
[`v4.1.5`](https://github.com/actions/download-artifact/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/download-artifact#322
- Update dependencies `@actions/core` to v1.10.1 and `@actions/artifact`
to v2.1.5

**Full Changelog**:
actions/download-artifact@v4.1.4...v4.1.5

</details>

<details>
<summary>actions/setup-go (actions/setup-go)</summary>

###
[`v5.0.1`](https://github.com/actions/setup-go/releases/tag/v5.0.1)

[Compare
Source](https://github.com/actions/setup-go/compare/v5.0.0...v5.0.1)

#### What's Changed

- Bump undici from 5.28.2 to 5.28.3 and dependencies upgrade by
[@&#8203;dependabot](https://github.com/dependabot) ,
[@&#8203;HarithaVattikuti](https://github.com/HarithaVattikuti) in
[actions/setup-go#465
- Update documentation with latest V5 release notes by
[@&#8203;ab](https://github.com/ab) in
[actions/setup-go#459
- Update version documentation by
[@&#8203;178inaba](https://github.com/178inaba) in
[actions/setup-go#458
- Documentation update of `actions/setup-go` to v5 by
[@&#8203;chenrui333](https://github.com/chenrui333) in
[actions/setup-go#449

#### New Contributors

- [@&#8203;ab](https://github.com/ab) made their first contribution in
[actions/setup-go#459

**Full Changelog**:
actions/setup-go@v5.0.0...v5.0.1

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>codecov/codecov-action (codecov/codecov-action)</summary>

###
[`v4.3.1`](https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1)

[Compare
Source](https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1)

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

###
[`v3.25.0`](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

</details>

<details>
<summary>golangci/golangci-lint-action
(golangci/golangci-lint-action)</summary>

###
[`v4.0.1`](https://github.com/golangci/golangci-lint-action/releases/tag/v4.0.1)

[Compare
Source](https://github.com/golangci/golangci-lint-action/compare/v4.0.0...v4.0.1)

<!-- Release notes generated using configuration in .github/release.yml
at v4.0.1 -->

#### What's Changed

##### Documentation

- docs: update the version of the action used in the README example by
[@&#8203;178inaba](https://github.com/178inaba) in
[golangci/golangci-lint-action#977

##### Dependencies

- build(deps): bump
[@&#8203;types/semver](https://github.com/types/semver) from 7.5.6 to
7.5.7 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#969
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 6.20.0 to 6.21.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#970
- build(deps-dev): bump eslint-plugin-simple-import-sort from 10.0.0 to
12.0.0 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#971
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 6.20.0 to 6.21.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#973
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.16 to
20.11.17 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#972
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.17 to
20.11.19 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#979
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 6.21.0 to 7.0.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#980
- build(deps): bump undici from 5.26.3 to 5.28.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#976
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.19 to
20.11.20 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#985
- build(deps): bump
[@&#8203;types/semver](https://github.com/types/semver) from 7.5.7 to
7.5.8 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#986
- build(deps-dev): bump eslint from 8.56.0 to 8.57.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#987
- build(deps): bump tmp from 0.2.1 to 0.2.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#989
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 6.21.0 to 7.1.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#988
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.20 to
20.11.24 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#990
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.1.0 to 7.1.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#991
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.24 to
20.11.25 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#992
- build(deps-dev): bump typescript from 5.3.3 to 5.4.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#993
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.1.0 to 7.1.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#994
- build(deps): bump
[@&#8203;actions/http-client](https://github.com/actions/http-client)
from 2.2.0 to 2.2.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#995
- build(deps): bump google.golang.org/protobuf from 1.28.0 to 1.33.0 in
/sample-go-mod by [@&#8203;dependabot](https://github.com/dependabot)
in
[golangci/golangci-lint-action#997
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.1.1 to 7.2.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#998
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.25 to
20.11.28 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1000
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.1.1 to 7.2.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#999
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.2.0 to 7.3.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1003
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.28 to
20.11.30 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1004
- build(deps-dev): bump typescript from 5.4.2 to 5.4.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1005
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.2.0 to 7.3.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1006
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.30 to
20.12.2 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1007
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.3.1 to 7.4.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1008
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.3.1 to 7.4.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1009
- build(deps): bump undici from 5.28.3 to 5.28.4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1010
- build(deps-dev): bump typescript from 5.4.3 to 5.4.4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1011
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.12.2 to
20.12.5 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1012
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.4.0 to 7.5.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1013
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.4.0 to 7.5.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1014
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.12.5 to
20.12.7 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1016
- build(deps-dev): bump typescript from 5.4.4 to 5.4.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1017
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.5.0 to 7.6.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1019
- build(deps-dev): bump eslint-plugin-simple-import-sort from 12.0.0 to
12.1.0 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1018
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.5.0 to 7.7.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1022
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.6.0 to 7.7.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1023

#### New Contributors

- [@&#8203;178inaba](https://github.com/178inaba) made their first
contribution in
[golangci/golangci-lint-action#977

**Full Changelog**:
golangci/golangci-lint-action@v4.0.0...v4.0.1

</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://github.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://developer.mend.io/github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM0MC4xMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
xballoy added a commit to kumojin/go-uuid that referenced this pull request May 7, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/kumojin/go-uuid).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMjEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Racer159 added a commit to defenseunicorns/uds-software-factory that referenced this pull request May 10, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.5` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-cli](https://github.com/defenseunicorns/uds-cli)
| | minor | `v0.9.0` -> `v0.10.4` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| | minor | `v0.3.10` -> `v0.4.2` |
|
[defenseunicorns/uds-common](https://github.com/defenseunicorns/uds-common)
| action | minor | `v0.3.10` -> `v0.4.2` |
| ghcr.io/defenseunicorns/packages/init | | minor | `v0.32.3` ->
`v0.33.1` |
| ghcr.io/defenseunicorns/packages/uds-k3d | | minor | `0.3.1` ->
`0.6.0` |
| ghcr.io/defenseunicorns/packages/uds/dev-minio | | patch | `0.0.1` ->
`0.0.2` |
| ghcr.io/defenseunicorns/packages/uds/dev-redis | | patch | `0.0.1` ->
`0.0.2` |
| ghcr.io/defenseunicorns/packages/uds/gitlab | | minor |
`16.10.1-uds.1-upstream` -> `16.11.1-uds.1-upstream` |
| ghcr.io/defenseunicorns/packages/uds/gitlab-runner | | minor |
`16.10.0-uds.0-upstream` -> `16.11.0-uds.0-upstream` |
| ghcr.io/defenseunicorns/packages/uds/mattermost | | minor |
`9.6.1-uds.0-upstream` -> `9.7.2-uds.0-upstream` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | minor | `v3.24.7` -> `v3.25.4` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>defenseunicorns/uds-cli (defenseunicorns/uds-cli)</summary>

###
[`v0.10.4`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.10.4)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.10.3...v0.10.4)

##### What's Changed

- feat: uds dev deploy by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#536
- feat: add ability to uds create to local output path by
[@&#8203;TristanHoladay](https://github.com/TristanHoladay) in
[defenseunicorns/uds-cli#547
- chore: adds dup pkgs docs by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#545
- feat: `uds dev deploy` beta note, packages flag, skip sbom by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#557
- ci: pin k3s version in k3d action to sidestep containerd issue by
[@&#8203;ZachGallagher](https://github.com/ZachGallagher) in
[defenseunicorns/uds-cli#565
- chore(deps): update docker/setup-buildx-action action to v3.3.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#559
- chore(deps): update github/codeql-action action to v3.24.10 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#556
- fix(deps): update golang.org/x/exp digest to
[`93d18d7`](https://github.com/defenseunicorns/uds-cli/commit/93d18d7)
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#555
- fix: typo in docs by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#561
- chore(deps): update zarf to v0.33.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#562
- fix(deps): update module helm.sh/helm/v3 to v3.14.4 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#566
- chore(deps): update pre-commit/action digest to
[`f7acafa`](https://github.com/defenseunicorns/uds-cli/commit/f7acafa)
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#564
- chore(deps): update podinfo to v6.6.2 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#563
- chore(deps): update sigstore/cosign-installer action to v3.5.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#568
- chore: refactor dev mode docs by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#567
- chore: swap release workflow to GH app by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#569

##### New Contributors

- [@&#8203;ZachGallagher](https://github.com/ZachGallagher) made their
first contribution in
[defenseunicorns/uds-cli#565

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.3...v0.10.4

###
[`v0.10.3`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.10.3)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.10.2...v0.10.3)

##### What's Changed

- fix: ensure we are pulling all components by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#543
- feat: allow dup pkgs in a bundle by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#533

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.2...v0.10.3

###
[`v0.10.2`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.10.2)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.10.1...v0.10.2)

##### What's Changed

- chore: adds TUI tests by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#530
- feat: adds retries flag by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#532
- chore(deps): update podinfo to v6.6.1 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#528
- fix: nil check pkg components in TUI by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#538
- fix: bumps retries to 3 by default to match Zarf by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#535
- chore: adds registry health check for tests by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#534
- feat: enables setting namespaces in bundled Helm charts by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#539
- fix: adds global GracefulPanic and checks to deploy TUI by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#542

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.1...v0.10.2

###
[`v0.10.1`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.10.1)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.10.0...v0.10.1)

##### What's Changed

- chore(deps): update anchore/sbom-action action to v0.15.10 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#526
- fix(deps): update module github.com/charmbracelet/lipgloss to v0.10.0
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#525
- fix(deps): update module github.com/charmbracelet/bubbles to v0.18.0
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#524
- fix(deps): update golang.org/x/exp digest to
[`a685a6e`](https://github.com/defenseunicorns/uds-cli/commit/a685a6e)
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#522
- fix(deps): update module oras.land/oras-go/v2 to v2.5.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#520
- fix: err when deploying with BubbleTea with no cluster by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#527

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.0...v0.10.1

###
[`v0.10.0`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.10.0)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.9.4...v0.10.0)

##### What's Changed

- chore: update uds to zarf v0.32.5 by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#511
- chore(deps): update github/codeql-action action to v3.24.8 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#512
- fix(deps): update golang.org/x/exp digest to
[`a85f2c6`](https://github.com/defenseunicorns/uds-cli/commit/a85f2c6)
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#510
- feat: adds --set to helm override vars by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#515
- fix: vendored in zarf version tag by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#518
- chore(deps): update github/codeql-action action to v3.24.9 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#519
- feat: beautiful TUI round 3 by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#509

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.4...v0.10.0

###
[`v0.9.4`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.9.4)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.9.3...v0.9.4)

##### What's Changed

- fix: error when removing bundles with short names by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#490
- fix(deps): update module github.com/stretchr/testify to v1.9.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#484
- chore: enhance development workflow with unified linting and tool by
[@&#8203;naveensrinivasan](https://github.com/naveensrinivasan) in
[defenseunicorns/uds-cli#472
- fix: add a wait to the registry startup during tests by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#499
- fix: ensure manifest config is included with pulls by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#503
- fix: autocomplete and vendor refactor by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#502
- chore(deps): update docker/setup-buildx-action action to v3.2.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#508
- chore(deps): update docker/login-action action to v3.1.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#504
- chore(deps): update github/codeql-action action to v3.24.7 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#501
- fix(deps): update module helm.sh/helm/v3 to v3.14.3 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#507
- fix: pass UDS_ARCHITECTURE to runner by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#506
- chore(deps): update anchore/sbom-action action to v0.15.9 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#489

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.3...v0.9.4

###
[`v0.9.3`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.9.3)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.9.2...v0.9.3)

##### What's Changed

- fix: toctou for files by
[@&#8203;naveensrinivasan](https://github.com/naveensrinivasan) in
[defenseunicorns/uds-cli#443
- fix: path traversal bug by
[@&#8203;naveensrinivasan](https://github.com/naveensrinivasan) in
[defenseunicorns/uds-cli#454
- fix: updates Zarf version in README by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#460
- chore: fixed the dangerous workflow by
[@&#8203;naveensrinivasan](https://github.com/naveensrinivasan) in
[defenseunicorns/uds-cli#465
- chore(deps): update docker/setup-buildx-action action to v3.1.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#470
- chore(deps): update actions/download-artifact action to v4.1.3 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#467
- chore(deps): update github/codeql-action action to v3.24.5 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#457
- fix(deps): update golang.org/x/exp digest to
[`814bf88`](https://github.com/defenseunicorns/uds-cli/commit/814bf88)
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#456
- fix: refactors tests and fixes bugs by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#464
- chore(deps): update podinfo to v6.6.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#462
- chore(deps): update zarf to v0.32.4 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#468
- chore(deps): update github/codeql-action action to v3.24.6 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#482
- chore: refactor pull operation by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#473
- chore: add UDS Core smoke test by
[@&#8203;justin-o12](https://github.com/justin-o12) in
[defenseunicorns/uds-cli#474
- fix: adds better err messaging when remote fails to resolve by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#486
- chore(deps): update actions/download-artifact action to v4.1.4 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#485
- fix(deps): update module golang.org/x/mod to v0.16.0 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#487
- chore: vendor runner by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#481
- fix: adds k3d to smoke test by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#488

##### New Contributors

- [@&#8203;justin-o12](https://github.com/justin-o12) made their first
contribution in
[defenseunicorns/uds-cli#474

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.2...v0.9.3

###
[`v0.9.2`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.9.2)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.9.1...v0.9.2)

##### What's Changed

- fix(deps): update module helm.sh/helm/v3 to v3.14.2 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#450
- fix: relative paths for bundle create by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#453

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.1...v0.9.2

###
[`v0.9.1`](https://github.com/defenseunicorns/uds-cli/releases/tag/v0.9.1)

[Compare
Source](https://github.com/defenseunicorns/uds-cli/compare/v0.9.0...v0.9.1)

##### What's Changed

- fix(deps): update module github.com/opencontainers/image-spec to
v1.1.0 by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#432
- fix(deps): update module helm.sh/helm/v3 to v3.14.1 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#429
- chore(deps): update github/codeql-action action to v3.24.3 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#421
- fix(deps): update golang.org/x/exp digest to
[`ec58324`](https://github.com/defenseunicorns/uds-cli/commit/ec58324)
by [@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#420
- fix: add support for zarf dev lint by
[@&#8203;Racer159](https://github.com/Racer159) in
[defenseunicorns/uds-cli#436
- fix: case sensitivity in override vars by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#433
- feat: alias vendored zarf to z by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#424
- fix: use tmpdir if provided by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#431
- feat: import all vars exported from package by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#428
- fix: gosec lint issues for the pkg by
[@&#8203;naveensrinivasan](https://github.com/naveensrinivasan) in
[defenseunicorns/uds-cli#444
- chore: ensure PR workflows can't write to GHCR by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#446
- chore: addresses github linter findings by
[@&#8203;UncleGedd](https://github.com/UncleGedd) in
[defenseunicorns/uds-cli#447
- feat: imported vars as override values by
[@&#8203;decleaver](https://github.com/decleaver) in
[defenseunicorns/uds-cli#423
- chore(deps): update github/codeql-action action to v3.24.4 by
[@&#8203;renovate](https://github.com/renovate) in
[defenseunicorns/uds-cli#451

##### New Contributors

- [@&#8203;naveensrinivasan](https://github.com/naveensrinivasan) made
their first contribution in
[defenseunicorns/uds-cli#444

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.0...v0.9.1

</details>

<details>
<summary>defenseunicorns/uds-common
(defenseunicorns/uds-common)</summary>

###
[`v0.4.2`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.2)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.4.1...v0.4.2)

##### Miscellaneous

- give doug a mattermostid attribute and update uds version
([#&#8203;120](https://github.com/defenseunicorns/uds-common/issues/120))
([4a85172](https://github.com/defenseunicorns/uds-common/commit/4a851720a8ac7e62826efda9e92200ba3a5b6709))

###
[`v0.4.1`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.1)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.4.0...v0.4.1)

##### Miscellaneous

- **deps:** update uds common support dependencies
([#&#8203;116](https://github.com/defenseunicorns/uds-common/issues/116))
([8aed1e0](https://github.com/defenseunicorns/uds-common/commit/8aed1e0ae8b4d65f7418664e8f2c73a16bf42801))

###
[`v0.4.0`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.3.11...v0.4.0)

##### Features

- adds renovate to sh files
([#&#8203;110](https://github.com/defenseunicorns/uds-common/issues/110))
([b604d2e](https://github.com/defenseunicorns/uds-common/commit/b604d2e1b3fc69f29122f9a709c605f5ecf4da18))

##### Miscellaneous

- add a default to setup to create an admin keycloak user
([#&#8203;111](https://github.com/defenseunicorns/uds-common/issues/111))
([7fe0dd4](https://github.com/defenseunicorns/uds-common/commit/7fe0dd49a9b7032f9c06a83c5a1c6adbb17e8d63))
- **deps:** update uds common support dependencies
([#&#8203;106](https://github.com/defenseunicorns/uds-common/issues/106))
([ab06724](https://github.com/defenseunicorns/uds-common/commit/ab067245249e63065d2c266fe3b1a45b155e9de2))
- fix the extract version template for env vars
([#&#8203;115](https://github.com/defenseunicorns/uds-common/issues/115))
([72d5d26](https://github.com/defenseunicorns/uds-common/commit/72d5d263ce850eac20728eb9330c7b3e26143a2b))

###
[`v0.3.11`](https://github.com/defenseunicorns/uds-common/releases/tag/v0.3.11)

[Compare
Source](https://github.com/defenseunicorns/uds-common/compare/v0.3.10...v0.3.11)

##### Miscellaneous

- add a default uds task to deploy podinfo
([#&#8203;108](https://github.com/defenseunicorns/uds-common/issues/108))
([c60e1ba](https://github.com/defenseunicorns/uds-common/commit/c60e1ba4888635ace4839e158b4dc476c11a8e7c))
- add a UDS package CR to make the package better for testing
([#&#8203;102](https://github.com/defenseunicorns/uds-common/issues/102))
([cf74934](https://github.com/defenseunicorns/uds-common/commit/cf749343a72db09f46cc054ff463454cdb8c4b74))
- **deps:** update uds common package dependencies to v6.6.2
([#&#8203;107](https://github.com/defenseunicorns/uds-common/issues/107))
([b6a18b0](https://github.com/defenseunicorns/uds-common/commit/b6a18b039711998bb6d3c90db25a4f42f49c5eb3))
- pull the current bundle and package names when deploying
([#&#8203;103](https://github.com/defenseunicorns/uds-common/issues/103))
([4b27106](https://github.com/defenseunicorns/uds-common/commit/4b27106a55775b725be217818f4be8d711340e95))
- update codeowners
([#&#8203;105](https://github.com/defenseunicorns/uds-common/issues/105))
([2e23ae3](https://github.com/defenseunicorns/uds-common/commit/2e23ae3a9a70189ca7d9671f3454158bb71a7ed6))

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.4`](https://github.com/github/codeql-action/compare/v3.25.3...v3.25.4)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.3...v3.25.4)

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

###
[`v3.25.0`](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

###
[`v3.24.10`](https://github.com/github/codeql-action/compare/v3.24.9...v3.24.10)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.9...v3.24.10)

###
[`v3.24.9`](https://github.com/github/codeql-action/compare/v3.24.8...v3.24.9)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.8...v3.24.9)

###
[`v3.24.8`](https://github.com/github/codeql-action/compare/v3.24.7...v3.24.8)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.7...v3.24.8)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://github.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://developer.mend.io/github/defenseunicorns/uds-software-factory).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM0MC4xMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Wayne Starr <me@racer159.com>
github-merge-queue bot pushed a commit to 4m-mazi/gh-test that referenced this pull request May 11, 2024
This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.5` | [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/actions/checkout/badge)](https://securityscorecards.dev/viewer/?uri=github.com/actions/checkout)
|

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

##### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v413)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685
- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJzZW12ZXI6bm9uZSJdfQ==-->

Co-authored-by: mazi-renovate[bot] <161091290+mazi-renovate[bot]@users.noreply.github.com>
ianlewis pushed a commit to slsa-framework/slsa-github-generator that referenced this pull request May 17, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| actions/checkout | action | digest | `b4ffde6` -> `a5ac7e5` |
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.6` |
|
[actions/download-artifact](https://github.com/actions/download-artifact)
| action | patch | `v4.1.4` -> `v4.1.7` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[ianlewis/todo-issue-reopener](https://github.com/ianlewis/todo-issue-reopener)
| action | patch | `v1.2.0` -> `v1.2.1` |
| [ossf/scorecard-action](https://github.com/ossf/scorecard-action) |
action | patch | `v2.3.0` -> `v2.3.3` |
|
[sigstore/cosign-installer](https://github.com/sigstore/cosign-installer)
| action | minor | `v3.4.0` -> `v3.5.0` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/download-artifact (actions/download-artifact)</summary>

###
[`v4.1.7`](https://github.com/actions/download-artifact/releases/tag/v4.1.7)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://github.com/actions/artifact)
dependency by [@&#8203;bethanyj28](https://github.com/bethanyj28) in
[actions/download-artifact#325

**Full Changelog**:
actions/download-artifact@v4.1.6...v4.1.7

###
[`v4.1.6`](https://github.com/actions/download-artifact/releases/tag/v4.1.6)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6)

#### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/download-artifact#324

**Full Changelog**:
actions/download-artifact@v4.1.5...v4.1.6

###
[`v4.1.5`](https://github.com/actions/download-artifact/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/download-artifact#322
- Update dependencies `@actions/core` to v1.10.1 and `@actions/artifact`
to v2.1.5

**Full Changelog**:
actions/download-artifact@v4.1.4...v4.1.5

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>ianlewis/todo-issue-reopener
(ianlewis/todo-issue-reopener)</summary>

###
[`v1.2.1`](https://github.com/ianlewis/todo-issue-reopener/releases/tag/v1.2.1)

[Compare
Source](https://github.com/ianlewis/todo-issue-reopener/compare/v1.2.0...v1.2.1)

##### Fixed in 1.2.1

- Fixed the "error updating to TUF remote mirror: invalid key" error
([#&#8203;688](https://github.com/ianlewis/todo-issue-reopener/issues/688)).

#### All changes

- fix: Update slsa-verifier version by
[@&#8203;ianlewis](https://github.com/ianlewis) in
[ianlewis/todo-issue-reopener#689
- chore(deps): Bump github/codeql-action from 3.23.2 to 3.25.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#711
- chore(deps): Bump codecov/codecov-action from 4.0.1 to 4.4.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#705
- chore(deps): Bump actions/upload-artifact from 4.3.0 to 4.3.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#670
- chore(deps-dev): Bump
[@&#8203;types/jest](https://github.com/types/jest) from 29.5.11 to
29.5.12 by [@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#664
- chore(deps): Bump actions/setup-node from 4.0.1 to 4.0.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#605
- chore(deps): Bump yamllint from 1.33.0 to 1.35.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#598
- chore(deps-dev): Bump eslint-plugin-github from 4.9.1 to 4.10.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#592
- chore(deps): Bump thehanimo/pr-title-checker from 1.4.1 to 1.4.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#604
- chore(deps): Bump yaml from 2.3.4 to 2.4.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#727
- chore(deps-dev): Bump
[@&#8203;vercel/ncc](https://github.com/vercel/ncc) from 0.36.1 to
0.38.1 by [@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#635
- chore(deps-dev): Bump eslint from 8.56.0 to 8.57.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ianlewis/todo-issue-reopener#634
- chore(release): v1.2.1 by
[@&#8203;ianlewis](https://github.com/ianlewis) in
[ianlewis/todo-issue-reopener#833

**Full Changelog**:
ianlewis/todo-issue-reopener@v1.2.0...v1.2.1

</details>

<details>
<summary>ossf/scorecard-action (ossf/scorecard-action)</summary>

###
[`v2.3.3`](https://github.com/ossf/scorecard-action/releases/tag/v2.3.3)

[Compare
Source](https://github.com/ossf/scorecard-action/compare/v2.3.2...v2.3.3)

> \[!NOTE]\
> There is no v2.3.2 release as a step was skipped in the release
process. This was fixed and re-released under the v2.3.3 tag

#### What's Changed

- 🌱 Bump github.com/ossf/scorecard/v4 (v4.13.1) to
github.com/ossf/scorecard/v5 (v5.0.0-rc1) by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1366
- 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc1 to
v5.0.0-rc2 by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1374
- 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc2 to
v5.0.0-rc2.0.20240509182734-7ce860946928 by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1377

For a full changelist of what these include, see the
[v5.0.0-rc1](https://github.com/ossf/scorecard/releases/tag/v5.0.0-rc1)
and
[v5.0.0-rc2](https://github.com/ossf/scorecard/releases/tag/v5.0.0-rc2)
release notes.

##### Documentation

- 📖 Move token discussion out of main README. by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1279
- 📖 link to `ossf/scorecard` workflow instead of maintaining an
example by [@&#8203;spencerschrock](https://github.com/spencerschrock)
in
[ossf/scorecard-action#1352
- 📖 update api links to new scorecard.dev site by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1376

**Full Changelog**:
ossf/scorecard-action@v2.3.1...v2.3.3

###
[`v2.3.2`](https://github.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2)

[Compare
Source](https://github.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2)

###
[`v2.3.1`](https://github.com/ossf/scorecard-action/releases/tag/v2.3.1)

[Compare
Source](https://github.com/ossf/scorecard-action/compare/v2.3.0...v2.3.1)

#### What's Changed

- 🌱 Bump github.com/ossf/scorecard/v4 from v4.13.0 to v4.13.1
by [@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1282
- Adds additional Fuzzing detection and fixes a SAST bug related to
detecting CodeQL. For a full changelist of what this includes, see the
[v4.13.1](https://github.com/ossf/scorecard/releases/tag/v4.13.1)
release notes

**Full Changelog**:
ossf/scorecard-action@v2.3.0...v2.3.1

</details>

<details>
<summary>sigstore/cosign-installer (sigstore/cosign-installer)</summary>

###
[`v3.5.0`](https://github.com/sigstore/cosign-installer/releases/tag/v3.5.0)

[Compare
Source](https://github.com/sigstore/cosign-installer/compare/v3.4.0...v3.5.0)

#### What's Changed

- Bump actions/checkout from 4.1.1 to 4.1.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[sigstore/cosign-installer#157
- use go 1.22 now by
[@&#8203;bobcallaway](https://github.com/bobcallaway) in
[sigstore/cosign-installer#160
- bump default version to v2.2.4, prep for v3.5.0 release by
[@&#8203;bobcallaway](https://github.com/bobcallaway) in
[sigstore/cosign-installer#159

**Full Changelog**:
sigstore/cosign-installer@v3.4.0...v3.5.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the
month" (UTC), 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://github.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://developer.mend.io/github/slsa-framework/slsa-github-generator).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Signed-off-by: Mend Renovate <bot@renovateapp.com>
xunleii pushed a commit to chezmoi-sh/atlas that referenced this pull request May 19, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` | [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/actions/checkout/badge)](https://securityscorecards.dev/viewer/?uri=github.com/actions/checkout)
|

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/chezmoi-sh/nex.rpi).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
xunleii pushed a commit to chezmoi-sh/atlas that referenced this pull request May 19, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` | [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/actions/checkout/badge)](https://securityscorecards.dev/viewer/?uri=github.com/actions/checkout)
|

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/chezmoi-sh/nex.rpi).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
xunleii pushed a commit to chezmoi-sh/atlas that referenced this pull request May 19, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` | [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/actions/checkout/badge)](https://securityscorecards.dev/viewer/?uri=github.com/actions/checkout)
|

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/chezmoi-sh/nex.rpi).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Yuan325 pushed a commit to GoogleCloudPlatform/genai-databases-retrieval-app that referenced this pull request May 20, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.6` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

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

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/GoogleCloudPlatform/genai-databases-retrieval-app).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
github-merge-queue bot pushed a commit to Tuhura-Tech/wiki that referenced this pull request May 22, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.6` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/Tuhura-Tech/wiki).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mjnagel added a commit to defenseunicorns/uds-core that referenced this pull request May 24, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/)
([source](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli))
| `19.2.1` -> `19.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fcli/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fcli/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fcli/19.2.1/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fcli/19.2.1/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [@commitlint/config-conventional](https://commitlint.js.org/)
([source](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional))
| `19.1.0` -> `19.2.2` |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fconfig-conventional/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fconfig-conventional/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fconfig-conventional/19.1.0/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fconfig-conventional/19.1.0/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [actions/checkout](https://github.com/actions/checkout) | `v4.1.1`
-> `v4.1.6` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fcheckout/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fcheckout/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fcheckout/v4.1.1/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fcheckout/v4.1.1/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
| [actions/checkout](https://github.com/actions/checkout) | ->
`a5ac7e5` | | | | | action | pinDigest |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| `v4.3.1` -> `v4.3.3` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fupload-artifact/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fupload-artifact/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fupload-artifact/v4.3.1/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fupload-artifact/v4.3.1/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
|
[aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials)
| -> `e3dd6a4` | | | | | action | pinDigest |
|
[hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform)
| -> `651471c` | | | | | action | pinDigest |

---

### Release Notes

<details>
<summary>conventional-changelog/commitlint
(@&#8203;commitlint/cli)</summary>

###
[`v19.3.0`](https://github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1930-2024-04-23)

[Compare
Source](https://github.com/conventional-changelog/commitlint/compare/v19.2.2...v19.3.0)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

####
[19.2.2](https://github.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2)
(2024-04-14)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

####
[19.2.1](https://github.com/conventional-changelog/commitlint/compare/v19.2.0...v19.2.1)
(2024-03-19)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

###
[`v19.2.2`](https://github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1922-2024-04-14)

[Compare
Source](https://github.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

</details>

<details>
<summary>conventional-changelog/commitlint
(@&#8203;commitlint/config-conventional)</summary>

###
[`v19.2.2`](https://github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/config-conventional/CHANGELOG.md#1922-2024-04-14)

[Compare
Source](https://github.com/conventional-changelog/commitlint/compare/v19.1.0...v19.2.2)

**Note:** Version bump only for package
[@&#8203;commitlint/config-conventional](https://github.com/commitlint/config-conventional)

</details>

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://github.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://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Micah Nagel <micah.nagel@defenseunicorns.com>
andrzej-stencel pushed a commit to andrzej-stencel/opentelemetry-collector that referenced this pull request May 27, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.2` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&open-telemetry#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&open-telemetry#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&open-telemetry#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&open-telemetry#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&open-telemetry#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&open-telemetry#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&open-telemetry#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&open-telemetry#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&open-telemetry#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&open-telemetry#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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://github.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://developer.mend.io/github/open-telemetry/opentelemetry-collector).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
josieang pushed a commit to josieang/osv-scanner that referenced this pull request Jun 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/download-artifact](https://github.com/actions/download-artifact)
| action | patch | `v4.1.4` -> `v4.1.7` |
| [actions/setup-go](https://github.com/actions/setup-go) | action |
patch | `v5.0.0` -> `v5.0.1` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action)
| action | patch | `v4.3.0` -> `v4.3.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | minor | `v3.24.10` -> `v3.25.3` |
|
[golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action)
| action | patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/download-artifact (actions/download-artifact)</summary>

###
[`v4.1.7`](https://github.com/actions/download-artifact/releases/tag/v4.1.7)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://github.com/actions/artifact)
dependency by [@&#8203;bethanyj28](https://github.com/bethanyj28) in
[actions/download-artifact#325

**Full Changelog**:
actions/download-artifact@v4.1.6...v4.1.7

###
[`v4.1.6`](https://github.com/actions/download-artifact/releases/tag/v4.1.6)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6)

#### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/download-artifact#324

**Full Changelog**:
actions/download-artifact@v4.1.5...v4.1.6

###
[`v4.1.5`](https://github.com/actions/download-artifact/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/download-artifact#322
- Update dependencies `@actions/core` to v1.10.1 and `@actions/artifact`
to v2.1.5

**Full Changelog**:
actions/download-artifact@v4.1.4...v4.1.5

</details>

<details>
<summary>actions/setup-go (actions/setup-go)</summary>

###
[`v5.0.1`](https://github.com/actions/setup-go/releases/tag/v5.0.1)

[Compare
Source](https://github.com/actions/setup-go/compare/v5.0.0...v5.0.1)

#### What's Changed

- Bump undici from 5.28.2 to 5.28.3 and dependencies upgrade by
[@&#8203;dependabot](https://github.com/dependabot) ,
[@&#8203;HarithaVattikuti](https://github.com/HarithaVattikuti) in
[actions/setup-go#465
- Update documentation with latest V5 release notes by
[@&#8203;ab](https://github.com/ab) in
[actions/setup-go#459
- Update version documentation by
[@&#8203;178inaba](https://github.com/178inaba) in
[actions/setup-go#458
- Documentation update of `actions/setup-go` to v5 by
[@&#8203;chenrui333](https://github.com/chenrui333) in
[actions/setup-go#449

#### New Contributors

- [@&#8203;ab](https://github.com/ab) made their first contribution in
[actions/setup-go#459

**Full Changelog**:
actions/setup-go@v5.0.0...v5.0.1

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>codecov/codecov-action (codecov/codecov-action)</summary>

###
[`v4.3.1`](https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1)

[Compare
Source](https://github.com/codecov/codecov-action/compare/v4.3.0...v4.3.1)

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

###
[`v3.25.0`](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

</details>

<details>
<summary>golangci/golangci-lint-action
(golangci/golangci-lint-action)</summary>

###
[`v4.0.1`](https://github.com/golangci/golangci-lint-action/releases/tag/v4.0.1)

[Compare
Source](https://github.com/golangci/golangci-lint-action/compare/v4.0.0...v4.0.1)

<!-- Release notes generated using configuration in .github/release.yml
at v4.0.1 -->

#### What's Changed

##### Documentation

- docs: update the version of the action used in the README example by
[@&#8203;178inaba](https://github.com/178inaba) in
[golangci/golangci-lint-action#977

##### Dependencies

- build(deps): bump
[@&#8203;types/semver](https://github.com/types/semver) from 7.5.6 to
7.5.7 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#969
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 6.20.0 to 6.21.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#970
- build(deps-dev): bump eslint-plugin-simple-import-sort from 10.0.0 to
12.0.0 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#971
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 6.20.0 to 6.21.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#973
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.16 to
20.11.17 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#972
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.17 to
20.11.19 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#979
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 6.21.0 to 7.0.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#980
- build(deps): bump undici from 5.26.3 to 5.28.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#976
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.19 to
20.11.20 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#985
- build(deps): bump
[@&#8203;types/semver](https://github.com/types/semver) from 7.5.7 to
7.5.8 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#986
- build(deps-dev): bump eslint from 8.56.0 to 8.57.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#987
- build(deps): bump tmp from 0.2.1 to 0.2.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#989
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 6.21.0 to 7.1.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#988
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.20 to
20.11.24 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#990
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.1.0 to 7.1.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#991
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.24 to
20.11.25 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#992
- build(deps-dev): bump typescript from 5.3.3 to 5.4.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#993
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.1.0 to 7.1.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#994
- build(deps): bump
[@&#8203;actions/http-client](https://github.com/actions/http-client)
from 2.2.0 to 2.2.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#995
- build(deps): bump google.golang.org/protobuf from 1.28.0 to 1.33.0 in
/sample-go-mod by [@&#8203;dependabot](https://github.com/dependabot)
in
[golangci/golangci-lint-action#997
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.1.1 to 7.2.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#998
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.25 to
20.11.28 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1000
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.1.1 to 7.2.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#999
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.2.0 to 7.3.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1003
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.28 to
20.11.30 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1004
- build(deps-dev): bump typescript from 5.4.2 to 5.4.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1005
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.2.0 to 7.3.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1006
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.11.30 to
20.12.2 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1007
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.3.1 to 7.4.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1008
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.3.1 to 7.4.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1009
- build(deps): bump undici from 5.28.3 to 5.28.4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1010
- build(deps-dev): bump typescript from 5.4.3 to 5.4.4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1011
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.12.2 to
20.12.5 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1012
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.4.0 to 7.5.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1013
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.4.0 to 7.5.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1014
- build(deps): bump
[@&#8203;types/node](https://github.com/types/node) from 20.12.5 to
20.12.7 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1016
- build(deps-dev): bump typescript from 5.4.4 to 5.4.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1017
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.5.0 to 7.6.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1019
- build(deps-dev): bump eslint-plugin-simple-import-sort from 12.0.0 to
12.1.0 by [@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1018
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser)
from 7.5.0 to 7.7.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1022
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin)
from 7.6.0 to 7.7.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[golangci/golangci-lint-action#1023

#### New Contributors

- [@&#8203;178inaba](https://github.com/178inaba) made their first
contribution in
[golangci/golangci-lint-action#977

**Full Changelog**:
golangci/golangci-lint-action@v4.0.0...v4.0.1

</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://github.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://developer.mend.io/github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM0MC4xMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
ramonpetgrave64 added a commit to slsa-framework/slsa-verifier that referenced this pull request Jul 1, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.7` |
|
[actions/dependency-review-action](https://github.com/actions/dependency-review-action)
| action | minor | `v4.2.5` -> `v4.3.3` |
|
[actions/download-artifact](https://github.com/actions/download-artifact)
| action | patch | `v4.1.4` -> `v4.1.7` |
| [actions/setup-go](https://github.com/actions/setup-go) | action |
patch | `v5.0.0` -> `v5.0.1` |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[actionsdesk/lfs-warning](https://github.com/actionsdesk/lfs-warning)
| action | minor | `v3.2` -> `v3.3` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | minor | `v3.24.9` -> `v3.25.11` |
|
[golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action)
| action | pinDigest | -> `d6238b0` |
| [ossf/scorecard-action](https://github.com/ossf/scorecard-action) |
action | patch | `v2.3.1` -> `v2.3.3` |
|
[slsa-framework/slsa-github-generator](https://github.com/slsa-framework/slsa-github-generator)
| action | pinDigest | -> `c747fe7` |
|
[slsa-framework/slsa-verifier](https://github.com/slsa-framework/slsa-verifier)
| action | minor | `v2.4.1` -> `v2.5.1` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/dependency-review-action
(actions/dependency-review-action)</summary>

###
[`v4.3.3`](https://github.com/actions/dependency-review-action/releases/tag/v4.3.3):
Notes for v4.3.3

[Compare
Source](https://github.com/actions/dependency-review-action/compare/v4.3.2...v4.3.3)

#### What's Changed

- Allow slashes in purl package names by
[@&#8203;juxtin](https://github.com/juxtin) in
[actions/dependency-review-action#765
- use the v3 version of the deps.dev API by
[@&#8203;josieang](https://github.com/josieang) in
[actions/dependency-review-action#741
- PR with suggestions - \[Improvement]: Help streamline / simplify
dependency review action README by
[@&#8203;am-stead](https://github.com/am-stead) in
[actions/dependency-review-action#773
- fix show-openssf-scorecard-levels input by
[@&#8203;ramann](https://github.com/ramann) in
[actions/dependency-review-action#776
- Updates to the contribution guidelines by
[@&#8203;jonjanego](https://github.com/jonjanego) in
[actions/dependency-review-action#778
- Create issue templates by
[@&#8203;jonjanego](https://github.com/jonjanego) in
[actions/dependency-review-action#777
- Fix the max comment length issue by
[@&#8203;jhutchings1](https://github.com/jhutchings1) and
[@&#8203;elireisman](https://github.com/elireisman) in
[actions/dependency-review-action#767
- Bump project version to 4.3.3 in prep for a release by
[@&#8203;elireisman](https://github.com/elireisman) in
[actions/dependency-review-action#781

#### New Contributors

- [@&#8203;josieang](https://github.com/josieang) made their first
contribution in
[actions/dependency-review-action#741
- [@&#8203;am-stead](https://github.com/am-stead) made their first
contribution in
[actions/dependency-review-action#773
- [@&#8203;ramann](https://github.com/ramann) made their first
contribution in
[actions/dependency-review-action#776

**Full Changelog**:
actions/dependency-review-action@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/dependency-review-action/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/dependency-review-action/compare/v4.3.1...v4.3.2)

#### What's Changed

- Fix package-url parsing for allow-dependencies-licenses by
[@&#8203;juxtin](https://github.com/juxtin) in
[actions/dependency-review-action#761

**Full Changelog**:
actions/dependency-review-action@v4.3.1...v4.3.2

###
[`v4.3.1`](https://github.com/actions/dependency-review-action/releases/tag/v4.3.1)

[Compare
Source](https://github.com/actions/dependency-review-action/compare/v4.3.0...v4.3.1)

#### What's Changed

This release fixes some bugs related to package-url parsing that were
introduced in 4.3.0. See
[actions/dependency-review-action#753.

**Full Changelog**:
actions/dependency-review-action@V4.3.0...v4.3.1

###
[`v4.3.0`](https://github.com/actions/dependency-review-action/releases/tag/v4.3.0)

[Compare
Source](https://github.com/actions/dependency-review-action/compare/v4.2.5...v4.3.0)

#### New Features

- The `deny-packages` option can now be used without a version number to
exclude *all* versions of a package.

#### What's Changed

- Fix action variable name for scorecard by
[@&#8203;lukehinds](https://github.com/lukehinds) in
[actions/dependency-review-action#735
- Fix extra https:// in summary by
[@&#8203;jhutchings1](https://github.com/jhutchings1) in
[actions/dependency-review-action#748
- Bump typescript from 5.3.3 to 5.4.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/dependency-review-action#744
- Bump eslint-plugin-github from 4.10.1 to 4.10.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/dependency-review-action#737
- Show denied packages with red X by
[@&#8203;juxtin](https://github.com/juxtin) in
[actions/dependency-review-action#750
- deny-packages configuration option can deny specified version or all
packages by [@&#8203;febuiles](https://github.com/febuiles) and
[@&#8203;bteng22](https://github.com/bteng22) in
[actions/dependency-review-action#733

#### New Contributors

- [@&#8203;bteng22](https://github.com/bteng22) made their first
contribution in
[actions/dependency-review-action#733
- [@&#8203;lukehinds](https://github.com/lukehinds) made their first
contribution in
[actions/dependency-review-action#735

**Full Changelog**:
actions/dependency-review-action@v4.2.5...V4.3.0

</details>

<details>
<summary>actions/download-artifact (actions/download-artifact)</summary>

###
[`v4.1.7`](https://github.com/actions/download-artifact/releases/tag/v4.1.7)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://github.com/actions/artifact)
dependency by [@&#8203;bethanyj28](https://github.com/bethanyj28) in
[actions/download-artifact#325

**Full Changelog**:
actions/download-artifact@v4.1.6...v4.1.7

###
[`v4.1.6`](https://github.com/actions/download-artifact/releases/tag/v4.1.6)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6)

#### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/download-artifact#324

**Full Changelog**:
actions/download-artifact@v4.1.5...v4.1.6

###
[`v4.1.5`](https://github.com/actions/download-artifact/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/download-artifact#322
- Update dependencies `@actions/core` to v1.10.1 and `@actions/artifact`
to v2.1.5

**Full Changelog**:
actions/download-artifact@v4.1.4...v4.1.5

</details>

<details>
<summary>actions/setup-go (actions/setup-go)</summary>

###
[`v5.0.1`](https://github.com/actions/setup-go/releases/tag/v5.0.1)

[Compare
Source](https://github.com/actions/setup-go/compare/v5.0.0...v5.0.1)

#### What's Changed

- Bump undici from 5.28.2 to 5.28.3 and dependencies upgrade by
[@&#8203;dependabot](https://github.com/dependabot) ,
[@&#8203;HarithaVattikuti](https://github.com/HarithaVattikuti) in
[actions/setup-go#465
- Update documentation with latest V5 release notes by
[@&#8203;ab](https://github.com/ab) in
[actions/setup-go#459
- Update version documentation by
[@&#8203;178inaba](https://github.com/178inaba) in
[actions/setup-go#458
- Documentation update of `actions/setup-go` to v5 by
[@&#8203;chenrui333](https://github.com/chenrui333) in
[actions/setup-go#449

#### New Contributors

- [@&#8203;ab](https://github.com/ab) made their first contribution in
[actions/setup-go#459

**Full Changelog**:
actions/setup-go@v5.0.0...v5.0.1

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

<details>
<summary>actionsdesk/lfs-warning (actionsdesk/lfs-warning)</summary>

### [`v3.3`](https://github.com/ppremk/lfs-warning/releases/tag/v3.3)

[Compare
Source](https://github.com/actionsdesk/lfs-warning/compare/v3.2...v3.3)

#### What's Changed

- update node js to 16 by
[@&#8203;GlazerMann](https://github.com/GlazerMann) in
[ppremk/lfs-warning#148
- Fixing README to match repo move by
[@&#8203;samthebest](https://github.com/samthebest) in
[ppremk/lfs-warning#153
- Update CODEOWNERS by [@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#158
- Bump http-cache-semantics from 4.1.0 to 4.1.1 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ppremk/lfs-warning#151
- Bump [@&#8203;babel/traverse](https://github.com/babel/traverse)
from 7.15.4 to 7.23.4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ppremk/lfs-warning#159
- Bump tough-cookie from 4.0.0 to 4.1.3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ppremk/lfs-warning#160
- Bump cacheable-request and gts by
[@&#8203;dependabot](https://github.com/dependabot) in
[ppremk/lfs-warning#152
- Update emoji and convert file list to markdown list by
[@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#161
- Bump got and gts by
[@&#8203;dependabot](https://github.com/dependabot) in
[ppremk/lfs-warning#155
- Exclude files without blob_url when getting PR blobs by
[@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#162
- Support pull_request_target by
[@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#164
- Update-node by [@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#163
- Fix text setup for the issue comment by
[@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#166
- Validate PR changes to make sure there are no changes missing by
[@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#165
- Fix emoji by [@&#8203;rajbos](https://github.com/rajbos) in
[ppremk/lfs-warning#167
- Bump undici from 5.28.2 to 5.28.4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[ppremk/lfs-warning#171

#### New Contributors

- [@&#8203;GlazerMann](https://github.com/GlazerMann) made their first
contribution in
[ppremk/lfs-warning#148
- [@&#8203;samthebest](https://github.com/samthebest) made their first
contribution in
[ppremk/lfs-warning#153
- [@&#8203;rajbos](https://github.com/rajbos) made their first
contribution in
[ppremk/lfs-warning#158

**Full Changelog**:
ppremk/lfs-warning@v3.2...v3.3

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.11`](https://github.com/github/codeql-action/compare/v3.25.10...v3.25.11)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.10...v3.25.11)

###
[`v3.25.10`](https://github.com/github/codeql-action/compare/v3.25.9...v3.25.10)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.9...v3.25.10)

###
[`v3.25.9`](https://github.com/github/codeql-action/compare/v3.25.8...v3.25.9)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.8...v3.25.9)

###
[`v3.25.8`](https://github.com/github/codeql-action/compare/v3.25.7...v3.25.8)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.7...v3.25.8)

###
[`v3.25.7`](https://github.com/github/codeql-action/compare/v3.25.6...v3.25.7)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.6...v3.25.7)

###
[`v3.25.6`](https://github.com/github/codeql-action/compare/v3.25.5...v3.25.6)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.5...v3.25.6)

###
[`v3.25.5`](https://github.com/github/codeql-action/compare/v3.25.4...v3.25.5)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.4...v3.25.5)

###
[`v3.25.4`](https://github.com/github/codeql-action/compare/v3.25.3...v3.25.4)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.3...v3.25.4)

###
[`v3.25.3`](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

###
[`v3.25.2`](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.1...v3.25.2)

###
[`v3.25.1`](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.0...v3.25.1)

###
[`v3.25.0`](https://github.com/github/codeql-action/compare/v3.24.10...v3.25.0)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.11...v3.25.0)

###
[`v3.24.11`](https://github.com/github/codeql-action/compare/v3.24.10...v3.24.11)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.10...v3.24.11)

###
[`v3.24.10`](https://github.com/github/codeql-action/compare/v3.24.9...v3.24.10)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.9...v3.24.10)

</details>

<details>
<summary>ossf/scorecard-action (ossf/scorecard-action)</summary>

###
[`v2.3.3`](https://github.com/ossf/scorecard-action/releases/tag/v2.3.3)

[Compare
Source](https://github.com/ossf/scorecard-action/compare/v2.3.2...v2.3.3)

> \[!NOTE]\
> There is no v2.3.2 release as a step was skipped in the release
process. This was fixed and re-released under the v2.3.3 tag

#### What's Changed

- 🌱 Bump github.com/ossf/scorecard/v4 (v4.13.1) to
github.com/ossf/scorecard/v5 (v5.0.0-rc1) by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1366
- 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc1 to
v5.0.0-rc2 by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1374
- 🌱 Bump github.com/ossf/scorecard/v5 from v5.0.0-rc2 to
v5.0.0-rc2.0.20240509182734-7ce860946928 by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1377

For a full changelist of what these include, see the
[v5.0.0-rc1](https://github.com/ossf/scorecard/releases/tag/v5.0.0-rc1)
and
[v5.0.0-rc2](https://github.com/ossf/scorecard/releases/tag/v5.0.0-rc2)
release notes.

##### Documentation

- 📖 Move token discussion out of main README. by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1279
- 📖 link to `ossf/scorecard` workflow instead of maintaining an
example by [@&#8203;spencerschrock](https://github.com/spencerschrock)
in
[ossf/scorecard-action#1352
- 📖 update api links to new scorecard.dev site by
[@&#8203;spencerschrock](https://github.com/spencerschrock) in
[ossf/scorecard-action#1376

**Full Changelog**:
ossf/scorecard-action@v2.3.1...v2.3.3

###
[`v2.3.2`](https://github.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2)

[Compare
Source](https://github.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2)

</details>

<details>
<summary>slsa-framework/slsa-verifier
(slsa-framework/slsa-verifier)</summary>

###
[`v2.5.1`](https://github.com/slsa-framework/slsa-verifier/releases/tag/v2.5.1)

[Compare
Source](https://github.com/slsa-framework/slsa-verifier/compare/v2.4.1...v2.5.1)

#### What's Changed

- feat: Add cosign registry opts for provenance registry by
[@&#8203;saisatishkarra](https://github.com/saisatishkarra) in
[#729
and
[#736
- feat: Add support for DSSE Rekor type by
[@&#8203;haydentherapper](https://github.com/haydentherapper) in
[#742

#### New Contributors

- [@&#8203;saisatishkarra](https://github.com/saisatishkarra) made
their first contribution in
[#729
- [@&#8203;ramonpetgrave64](https://github.com/ramonpetgrave64) made
their first contribution in
[#737
- [@&#8203;haydentherapper](https://github.com/haydentherapper) made
their first contribution in
[#742

**Full Changelog**:
v2.4.1...v2.5.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the
month" (UTC), 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://github.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://developer.mend.io/github/slsa-framework/slsa-verifier).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: Ramon Petgrave <32398091+ramonpetgrave64@users.noreply.github.com>
cuixq added a commit to google/osv-scanner that referenced this pull request Jul 2, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.7` |
| [actions/setup-go](https://github.com/actions/setup-go) | action |
patch | `v5.0.0` -> `v5.0.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.25.10` -> `v3.25.11` |
| [r-lib/actions](https://github.com/r-lib/actions) | action | minor |
`v2.8.7` -> `v2.9.0` |
| [ruby/setup-ruby](https://github.com/ruby/setup-ruby) | action |
minor | `v1.175.1` -> `v1.183.0` |
| [shivammathur/setup-php](https://github.com/shivammathur/setup-php)
| action | minor | `v2.30.4` -> `2.31.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/setup-go (actions/setup-go)</summary>

###
[`v5.0.1`](https://github.com/actions/setup-go/releases/tag/v5.0.1)

[Compare
Source](https://github.com/actions/setup-go/compare/v5.0.0...v5.0.1)

#### What's Changed

- Bump undici from 5.28.2 to 5.28.3 and dependencies upgrade by
[@&#8203;dependabot](https://github.com/dependabot) ,
[@&#8203;HarithaVattikuti](https://github.com/HarithaVattikuti) in
[actions/setup-go#465
- Update documentation with latest V5 release notes by
[@&#8203;ab](https://github.com/ab) in
[actions/setup-go#459
- Update version documentation by
[@&#8203;178inaba](https://github.com/178inaba) in
[actions/setup-go#458
- Documentation update of `actions/setup-go` to v5 by
[@&#8203;chenrui333](https://github.com/chenrui333) in
[actions/setup-go#449

#### New Contributors

- [@&#8203;ab](https://github.com/ab) made their first contribution in
[actions/setup-go#459

**Full Changelog**:
actions/setup-go@v5.0.0...v5.0.1

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.25.11`](https://github.com/github/codeql-action/compare/v3.25.10...v3.25.11)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.25.10...v3.25.11)

</details>

<details>
<summary>r-lib/actions (r-lib/actions)</summary>

###
[`v2.9.0`](https://github.com/r-lib/actions/compare/v2.8.7...v2.9.0)

[Compare
Source](https://github.com/r-lib/actions/compare/v2.8.7...v2.9.0)

</details>

<details>
<summary>ruby/setup-ruby (ruby/setup-ruby)</summary>

###
[`v1.183.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.183.0)

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.182.0...v1.183.0)

**Full Changelog**:
ruby/setup-ruby@v1.182.0...v1.183.0

###
[`v1.182.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.182.0)

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.181.0...v1.182.0)

**Full Changelog**:
ruby/setup-ruby@v1.181.0...v1.182.0

###
[`v1.181.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.181.0)

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.180.1...v1.181.0)

##### What's Changed

- Add jruby-9.3.15.0 by
[@&#8203;ruby-builder-bot](https://github.com/ruby-builder-bot) in
[ruby/setup-ruby#614

**Full Changelog**:
ruby/setup-ruby@v1.180.1...v1.181.0

###
[`v1.180.1`](https://github.com/ruby/setup-ruby/releases/tag/v1.180.1):
Add ruby-3.3.3 on Windows

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.180.0...v1.180.1)

###
[`v1.180.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.180.0):
Add ruby-3.3.3

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.179.1...v1.180.0)

###
[`v1.179.1`](https://github.com/ruby/setup-ruby/releases/tag/v1.179.1):
Improve error message for CRuby &lt; 2.6 on macos-arm64

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.179.0...v1.179.1)

###
[`v1.179.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.179.0):
Add ruby-3.1.6,ruby-3.3.2 on Windows

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.178.0...v1.179.0)

#### What's Changed

- Update CRuby releases on Windows by
[@&#8203;ruby-builder-bot](https://github.com/ruby-builder-bot) in
[ruby/setup-ruby#605

**Full Changelog**:
ruby/setup-ruby@v1.178.0...v1.179.0

###
[`v1.178.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.178.0):
Add ruby-3.1.6,ruby-3.3.2 and improve error messages

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.177.1...v1.178.0)

#### What's Changed

- Add ruby-3.1.6,ruby-3.3.2 by
[@&#8203;ruby-builder-bot](https://github.com/ruby-builder-bot) in
[ruby/setup-ruby#603

**Full Changelog**:
ruby/setup-ruby@v1.177.1...v1.178.0

###
[`v1.177.1`](https://github.com/ruby/setup-ruby/releases/tag/v1.177.1):
Use downloadAndExtract() for truffleruby+graalvm too

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.177.0...v1.177.1)

###
[`v1.177.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.177.0):
Add support for ubuntu-24.04

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.176.2...v1.177.0)

###
[`v1.176.2`](https://github.com/ruby/setup-ruby/releases/tag/v1.176.2):
Add ruby-3.4.0-preview1

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.176.0...v1.176.2)

###
[`v1.176.0`](https://github.com/ruby/setup-ruby/releases/tag/v1.176.0):
Add jruby-9.4.7.0

[Compare
Source](https://github.com/ruby/setup-ruby/compare/v1.175.1...v1.176.0)

</details>

<details>
<summary>shivammathur/setup-php (shivammathur/setup-php)</summary>

###
[`v2.31.0`](https://github.com/shivammathur/setup-php/releases/tag/2.31.0)

[Compare
Source](https://github.com/shivammathur/setup-php/compare/2.30.5...2.31.0)

##### Changelog

- Added support for a fallback mirror for `ondrej/php` PPA when
launchpad is down
([#&#8203;834](https://github.com/shivammathur/setup-php/issues/834)).

- Fixed installing packages on self-hosted environments with existing
conf files
([#&#8203;852](https://github.com/shivammathur/setup-php/issues/852)).

-   Fixed support for `oci8` and `pdo_oci` extensions on `ubuntu-24.04`.

-   Fixed support for `couchbase` extension on `ubuntu-24.04`.

- Fixed support for `ubuntu-24.04` after `apt-fast` was dropped from the
GA images.

-   Fixed support for `firebird` extension on `macos-14`

-   Fixed support for `blackfire` extension on `macos-14`.

-   Fixed support for `relay` extension.

-   Fixed support for `phalcon` extension for PHP 7.4 on Ubuntu.

-   Updated Node.js dependencies.

For the complete list of changes, please refer to the [Full
Changelog](https://github.com/shivammathur/setup-php/compare/2.30.5...2.31.0)

<p>
  <h4>Follow for updates</h4>
<a href="https://reddit.com/r/setup_php" title="setup-php reddit"><img
alt="setup-php reddit"
src="https://img.shields.io/badge/reddit-join-FF5700?logo=reddit&logoColor=FF5700&labelColor=555555"></a>
<a href="https://twitter.com/setup_php" title="setup-php twitter"><img
alt="setup-php twitter"
src="https://img.shields.io/badge/twitter-follow-1DA1F2?logo=twitter&logoColor=1DA1F2&labelColor=555555"></a>
<a href="https://status.setup-php.com" title="setup-php status"><img
alt="setup-php status"
src="https://img.shields.io/badge/status-subscribe-28A745?logo=statuspage&logoColor=28A745&labelColor=555555"></a>
</p>

###
[`v2.30.5`](https://github.com/shivammathur/setup-php/releases/tag/2.30.5)

[Compare
Source](https://github.com/shivammathur/setup-php/compare/2.30.4...2.30.5)

##### Changelog

-   Added support for Ubuntu 24.04.

- Added support for `easy-coding-standard` in tools
([shivammathur/setup-php#838)

-   Added support for zephir_parser for PHP 8.3.

- Fixed installing zts PHP versions on macOS
([shivammathur/setup-php#847).

- Fixed installing `ev` extension
([shivammathur/setup-php#844).

- Fixed support for `ioncube` extension
([shivammathur/setup-php#840).

-   Updated Node.js dependencies.

For the complete list of changes, please refer to the [Full
Changelog](https://github.com/shivammathur/setup-php/compare/2.30.4...2.30.5)

<p>
  <h4>Follow for updates</h4>
<a href="https://reddit.com/r/setup_php" title="setup-php reddit"><img
alt="setup-php reddit"
src="https://img.shields.io/badge/reddit-join-FF5700?logo=reddit&logoColor=FF5700&labelColor=555555"></a>
<a href="https://twitter.com/setup_php" title="setup-php twitter"><img
alt="setup-php twitter"
src="https://img.shields.io/badge/twitter-follow-1DA1F2?logo=twitter&logoColor=1DA1F2&labelColor=555555"></a>
<a href="https://status.setup-php.com" title="setup-php status"><img
alt="setup-php status"
src="https://img.shields.io/badge/status-subscribe-28A745?logo=statuspage&logoColor=28A745&labelColor=555555"></a>
</p>

</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://github.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://developer.mend.io/github/google/osv-scanner).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: Xueqin Cui <72771658+cuixq@users.noreply.github.com>
rjferguson21 pushed a commit to defenseunicorns/uds-core that referenced this pull request Jul 11, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/)
([source](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli))
| `19.2.1` -> `19.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fcli/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fcli/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fcli/19.2.1/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fcli/19.2.1/19.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [@commitlint/config-conventional](https://commitlint.js.org/)
([source](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional))
| `19.1.0` -> `19.2.2` |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fconfig-conventional/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fconfig-conventional/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fconfig-conventional/19.1.0/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fconfig-conventional/19.1.0/19.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [actions/checkout](https://github.com/actions/checkout) | `v4.1.1`
-> `v4.1.6` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fcheckout/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fcheckout/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fcheckout/v4.1.1/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fcheckout/v4.1.1/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
| [actions/checkout](https://github.com/actions/checkout) | ->
`a5ac7e5` | | | | | action | pinDigest |
|
[actions/upload-artifact](https://github.com/actions/upload-artifact)
| `v4.3.1` -> `v4.3.3` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fupload-artifact/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fupload-artifact/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fupload-artifact/v4.3.1/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fupload-artifact/v4.3.1/v4.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
|
[aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials)
| -> `e3dd6a4` | | | | | action | pinDigest |
|
[hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform)
| -> `651471c` | | | | | action | pinDigest |

---

### Release Notes

<details>
<summary>conventional-changelog/commitlint
(@&#8203;commitlint/cli)</summary>

###
[`v19.3.0`](https://github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1930-2024-04-23)

[Compare
Source](https://github.com/conventional-changelog/commitlint/compare/v19.2.2...v19.3.0)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

####
[19.2.2](https://github.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2)
(2024-04-14)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

####
[19.2.1](https://github.com/conventional-changelog/commitlint/compare/v19.2.0...v19.2.1)
(2024-03-19)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

###
[`v19.2.2`](https://github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1922-2024-04-14)

[Compare
Source](https://github.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://github.com/commitlint/cli)

</details>

<details>
<summary>conventional-changelog/commitlint
(@&#8203;commitlint/config-conventional)</summary>

###
[`v19.2.2`](https://github.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/config-conventional/CHANGELOG.md#1922-2024-04-14)

[Compare
Source](https://github.com/conventional-changelog/commitlint/compare/v19.1.0...v19.2.2)

**Note:** Version bump only for package
[@&#8203;commitlint/config-conventional](https://github.com/commitlint/config-conventional)

</details>

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.3`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#565

**Full Changelog**:
actions/upload-artifact@v4.3.2...v4.3.3

###
[`v4.3.2`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://github.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://github.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://github.com/robherley) in
[actions/upload-artifact#561
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://github.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://github.com/andrewakim) made their first
contribution in
[actions/upload-artifact#523

**Full Changelog**:
actions/upload-artifact@v4.3.1...v4.3.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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://github.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://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Micah Nagel <micah.nagel@defenseunicorns.com>
DonRobo pushed a commit to DonRobo/ha-ha-integration that referenced this pull request Jul 26, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.0` -> `v4.1.7` |
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | `v4.1.6` -> `v4.1.7` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

###
[`v4.1.1`](https://github.com/actions/checkout/releases/tag/v4.1.1)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.0...v4.1.1)

##### What's Changed

- Update CODEOWNERS to Launch team by
[@&#8203;joshmgross](https://github.com/joshmgross) in
[actions/checkout#1510
- Correct link to GitHub Docs by
[@&#8203;peterbe](https://github.com/peterbe) in
[actions/checkout#1511
- Link to release page from what's new section by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1514

##### New Contributors

- [@&#8203;joshmgross](https://github.com/joshmgross) made their first
contribution in
[actions/checkout#1510
- [@&#8203;peterbe](https://github.com/peterbe) made their first
contribution in
[actions/checkout#1511

**Full Changelog**:
actions/checkout@v4.1.0...v4.1.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

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

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/DonRobo/ha-ha-integration).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
oxide-renovate bot added a commit to oxidecomputer/omicron that referenced this pull request Jul 31, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
patch | [`v4.1.1` ->
`v4.1.7`](https://github.com/actions/checkout/compare/v4.1.1...v4.1.7)
|

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v415)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v413)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685
- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 8pm,before 6am" in timezone
America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone
America/Los_Angeles.

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMy40IiwidXBkYXRlZEluVmVyIjoiMzguMTMuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: oxide-renovate[bot] <146848827+oxide-renovate[bot]@users.noreply.github.com>
jbudz pushed a commit to elastic/kibana that referenced this pull request Aug 13, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action |
minor | `v4` -> `v4.1.7` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v415)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5)

- Update NPM dependencies by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1707

###
[`v4.1.4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v413)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3)

- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1685
- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://github.com/jww3) in
[actions/checkout#1650

###
[`v4.1.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://github.com/dscho) in
[actions/checkout#1598

###
[`v4.1.1`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v411)

[Compare
Source](https://github.com/actions/checkout/compare/v4.1.0...v4.1.1)

- Correct link to GitHub Docs by
[@&#8203;peterbe](https://github.com/peterbe) in
[actions/checkout#1511
- Link to release page from what's new section by
[@&#8203;cory-miller](https://github.com/cory-miller) in
[actions/checkout#1514

###
[`v4.1.0`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v410)

[Compare
Source](https://github.com/actions/checkout/compare/v4...v4.1.0)

- [Add support for partial checkout
filters](https://github.com/actions/checkout/pull/1396)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
itsacoyote pushed a commit to zkSync-Community-Hub/community-code that referenced this pull request Sep 4, 2024
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| [@nuxt/fonts](https://redirect.github.com/nuxt/fonts) | [`^0.5.1` ->
`^0.7.2`](https://renovatebot.com/diffs/npm/@nuxt%2ffonts/0.5.1/0.7.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@nuxt%2ffonts/0.7.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@nuxt%2ffonts/0.7.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@nuxt%2ffonts/0.5.1/0.7.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@nuxt%2ffonts/0.5.1/0.7.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [actions/checkout](https://redirect.github.com/actions/checkout) |
`v4.1.1` -> `v4.1.7` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fcheckout/v4.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fcheckout/v4.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fcheckout/v4.1.1/v4.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fcheckout/v4.1.1/v4.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
|
[amannn/action-semantic-pull-request](https://redirect.github.com/amannn/action-semantic-pull-request)
| `v5.5.2` -> `v5.5.3` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/amannn%2faction-semantic-pull-request/v5.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/amannn%2faction-semantic-pull-request/v5.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/amannn%2faction-semantic-pull-request/v5.5.2/v5.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/amannn%2faction-semantic-pull-request/v5.5.2/v5.5.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
|
[trufflesecurity/trufflehog](https://redirect.github.com/trufflesecurity/trufflehog)
| `v3.69.0` -> `v3.81.10` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/trufflesecurity%2ftrufflehog/v3.81.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/trufflesecurity%2ftrufflehog/v3.81.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/trufflesecurity%2ftrufflehog/v3.69.0/v3.81.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/trufflesecurity%2ftrufflehog/v3.69.0/v3.81.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |

---

### Release Notes

<details>
<summary>nuxt/fonts (@&#8203;nuxt/fonts)</summary>

###
[`v0.7.2`](https://redirect.github.com/nuxt/fonts/blob/HEAD/CHANGELOG.md#v072)

[Compare
Source](https://redirect.github.com/nuxt/fonts/compare/v0.7.1...v0.7.2)

[compare
changes](https://redirect.github.com/nuxt/fonts/compare/v0.7.1...v0.7.2)

##### 🔥 Performance

- **local:** Use `tinyglobby` to scan font files
([#&#8203;205](https://redirect.github.com/nuxt/fonts/pull/205))

##### 🩹 Fixes

- Apply `-` replacement to filename
([d83aa0d](https://redirect.github.com/nuxt/fonts/commit/d83aa0d))
- **adobe:** Use provided `css_names` from API
([#&#8203;192](https://redirect.github.com/nuxt/fonts/pull/192))
- **fontsource:** Use `/variable` endpoint for retrieving variable axes
([#&#8203;196](https://redirect.github.com/nuxt/fonts/pull/196))

##### 📖 Documentation

- Fix link to how it works
([#&#8203;197](https://redirect.github.com/nuxt/fonts/pull/197))
- Update carbon abs
([7b61b15](https://redirect.github.com/nuxt/fonts/commit/7b61b15))
- Improvements
([9dab0a3](https://redirect.github.com/nuxt/fonts/commit/9dab0a3))
- Update social og image
([2991df2](https://redirect.github.com/nuxt/fonts/commit/2991df2))
- Fix open an issue link on installation page
([#&#8203;206](https://redirect.github.com/nuxt/fonts/pull/206))

##### 🏡 Chore

- Lint
([dabc1ce](https://redirect.github.com/nuxt/fonts/commit/dabc1ce))

##### ✅ Tests

- Update snapshots
([5bc9ae6](https://redirect.github.com/nuxt/fonts/commit/5bc9ae6))

##### ❤️ Contributors

-   Ben McCann ([@&#8203;benmccann](http://github.com/benmccann))
-   Kethan Vegunta ([@&#8203;kethan1](http://github.com/kethan1))
-   Daniel Roe ([@&#8203;danielroe](http://github.com/danielroe))
-   Sébastien Chopin ([@&#8203;atinux](http://github.com/atinux))
-   Tom Tang ([@&#8203;qwerzl](http://github.com/qwerzl))
-   Michel EDIGHOFFER <edimitchel@gmail.com>

###
[`v0.7.1`](https://redirect.github.com/nuxt/fonts/blob/HEAD/CHANGELOG.md#v071)

[Compare
Source](https://redirect.github.com/nuxt/fonts/compare/v0.7.0...v0.7.1)

[compare
changes](https://redirect.github.com/nuxt/fonts/compare/v0.7.0...v0.7.1)

##### 🩹 Fixes

- **local:** Scan for fonts in all public assets dirs
([6e7ae2b](https://redirect.github.com/nuxt/fonts/commit/6e7ae2b))
- Ensure we don't have font filenames prefixed with `-`
([dfa252a](https://redirect.github.com/nuxt/fonts/commit/dfa252a))

##### 📖 Documentation

- Add docs page
([#&#8203;146](https://redirect.github.com/nuxt/fonts/pull/146))
- Update home page links
([8c91318](https://redirect.github.com/nuxt/fonts/commit/8c91318))
- Two more links
([5af0e5e](https://redirect.github.com/nuxt/fonts/commit/5af0e5e))

##### 🏡 Chore

- Add CODEOWNERS file
([#&#8203;156](https://redirect.github.com/nuxt/fonts/pull/156))
- Lint
([1632eee](https://redirect.github.com/nuxt/fonts/commit/1632eee))

##### ❤️ Contributors

-   Daniel Roe ([@&#8203;danielroe](http://github.com/danielroe))
-   Tom Tang ([@&#8203;qwerzl](http://github.com/qwerzl))

###
[`v0.7.0`](https://redirect.github.com/nuxt/fonts/blob/HEAD/CHANGELOG.md#v070)

[Compare
Source](https://redirect.github.com/nuxt/fonts/compare/v0.6.1...v0.7.0)

[compare
changes](https://redirect.github.com/nuxt/fonts/compare/v0.6.1...v0.7.0)

##### 🚀 Enhancements

- Allow configuring `font-stretch` property in override
([d7ff458](https://redirect.github.com/nuxt/fonts/commit/d7ff458))
- Add `preload` override + preload non subsetted fonts
([#&#8203;136](https://redirect.github.com/nuxt/fonts/pull/136))

##### 🩹 Fixes

- Do not apply ignore patterns to `_fonts` public dir
([4952673](https://redirect.github.com/nuxt/fonts/commit/4952673))

##### 📖 Documentation

- Clarify that `addPreloadLinks` only affects production
([d3cbcdb](https://redirect.github.com/nuxt/fonts/commit/d3cbcdb))
- **readme:** Replace provider count
([#&#8203;125](https://redirect.github.com/nuxt/fonts/pull/125))

##### 🏡 Chore

- Migrate to eslint v9
([#&#8203;121](https://redirect.github.com/nuxt/fonts/pull/121))
- Lint
([7fa0ef5](https://redirect.github.com/nuxt/fonts/commit/7fa0ef5))
- Update to latest `@nuxt/module-builder`
([#&#8203;139](https://redirect.github.com/nuxt/fonts/pull/139))

##### 🤖 CI

- Add codecov token
([#&#8203;140](https://redirect.github.com/nuxt/fonts/pull/140))

##### ❤️ Contributors

-   Daniel Roe ([@&#8203;danielroe](http://github.com/danielroe))
-   Jonas Thelemann <e-mail+github@jonas-thelemann.de>

###
[`v0.6.1`](https://redirect.github.com/nuxt/fonts/blob/HEAD/CHANGELOG.md#v061)

[Compare
Source](https://redirect.github.com/nuxt/fonts/compare/v0.6.0...v0.6.1)

[compare
changes](https://redirect.github.com/nuxt/fonts/compare/v0.6.0...v0.6.1)

##### 🩹 Fixes

- Add style in variable font local fallback name
([#&#8203;110](https://redirect.github.com/nuxt/fonts/pull/110))

##### 📖 Documentation

- Add link to adobe's terms and warning to read
([7872b28](https://redirect.github.com/nuxt/fonts/commit/7872b28))
- Mention non-latin subset support for adobe provider
([#&#8203;109](https://redirect.github.com/nuxt/fonts/pull/109))

##### 🏡 Chore

- **release:** V0.6.0
([0913b4b](https://redirect.github.com/nuxt/fonts/commit/0913b4b))

##### ❤️ Contributors

-   Tom Tang ([@&#8203;qwerzl](http://github.com/qwerzl))
-   Daniel Roe ([@&#8203;danielroe](http://github.com/danielroe))

###
[`v0.6.0`](https://redirect.github.com/nuxt/fonts/blob/HEAD/CHANGELOG.md#v060)

[Compare
Source](https://redirect.github.com/nuxt/fonts/compare/v0.5.1...v0.6.0)

[compare
changes](https://redirect.github.com/nuxt/fonts/compare/v0.5.1...v0.6.0)

##### 🚀 Enhancements

- **fontsource:** Support variable fonts
([#&#8203;102](https://redirect.github.com/nuxt/fonts/pull/102))

##### 🩹 Fixes

- Render variable font weight correctly
([#&#8203;99](https://redirect.github.com/nuxt/fonts/pull/99))
- Preserve `@font-face` order when rendering
([836a605](https://redirect.github.com/nuxt/fonts/commit/836a605))
- Only prepend once 🤣 and update snapshots
([8a000ae](https://redirect.github.com/nuxt/fonts/commit/8a000ae))
- Adopt forward-compatible approach to `builder:watch`
([#&#8203;101](https://redirect.github.com/nuxt/fonts/pull/101))
- Handle custom `app.baseURL` in development
([d9f4fae](https://redirect.github.com/nuxt/fonts/commit/d9f4fae))

##### 📖 Documentation

- Add image
([608653b](https://redirect.github.com/nuxt/fonts/commit/608653b))
- Mention disabling unocss web fonts preset
([627125b](https://redirect.github.com/nuxt/fonts/commit/627125b))

##### 🏡 Chore

- Link to latest version in badges
([42e7030](https://redirect.github.com/nuxt/fonts/commit/42e7030))

##### ✅ Tests

- Update poppins snapshot
([274ae5f](https://redirect.github.com/nuxt/fonts/commit/274ae5f))

##### ❤️ Contributors

-   Daniel Roe ([@&#8203;danielroe](http://github.com/danielroe))
-   Tom Tang ([@&#8203;qwerzl](http://github.com/qwerzl))
-   Sébastien Chopin ([@&#8203;Atinux](http://github.com/Atinux))

</details>

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/actions/checkout/pull/1739](https://redirect.github.com/actions/checkout/pull/1739)
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1697](https://redirect.github.com/actions/checkout/pull/1697)
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://redirect.github.com/orhantoy) in
[https://github.com/actions/checkout/pull/1774](https://redirect.github.com/actions/checkout/pull/1774)
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1776](https://redirect.github.com/actions/checkout/pull/1776)

###
[`v4.1.6`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1732](https://redirect.github.com/actions/checkout/pull/1732)

###
[`v4.1.5`](https://redirect.github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1703](https://redirect.github.com/actions/checkout/pull/1703)
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1694](https://redirect.github.com/actions/checkout/pull/1694)
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1696](https://redirect.github.com/actions/checkout/pull/1696)
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1695](https://redirect.github.com/actions/checkout/pull/1695)
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1707](https://redirect.github.com/actions/checkout/pull/1707)

**Full Changelog**:
https://github.com/actions/checkout/compare/v4.1.4...v4.1.5

###
[`v4.1.4`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1692](https://redirect.github.com/actions/checkout/pull/1692)
- Add dependabot config by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1688](https://redirect.github.com/actions/checkout/pull/1688)
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1693](https://redirect.github.com/actions/checkout/pull/1693)
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1643](https://redirect.github.com/actions/checkout/pull/1643)

###
[`v4.1.3`](https://redirect.github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1650](https://redirect.github.com/actions/checkout/pull/1650)
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1656](https://redirect.github.com/actions/checkout/pull/1656)
- Add SSH user parameter by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1685](https://redirect.github.com/actions/checkout/pull/1685)

**Full Changelog**:
https://github.com/actions/checkout/compare/v4.1.2...v4.1.3

###
[`v4.1.2`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://redirect.github.com/dscho) in
[https://github.com/actions/checkout/pull/1598](https://redirect.github.com/actions/checkout/pull/1598)

</details>

<details>
<summary>amannn/action-semantic-pull-request
(amannn/action-semantic-pull-request)</summary>

###
[`v5.5.3`](https://redirect.github.com/amannn/action-semantic-pull-request/releases/tag/v5.5.3)

[Compare
Source](https://redirect.github.com/amannn/action-semantic-pull-request/compare/v5.5.2...v5.5.3)

##### Bug Fixes

- Bump `braces` dependency
([#&#8203;269](https://redirect.github.com/amannn/action-semantic-pull-request/issues/269).
by [@&#8203;EelcoLos](https://redirect.github.com/EelcoLos))
([2d952a1](https://redirect.github.com/amannn/action-semantic-pull-request/commit/2d952a1bf90a6a7ab8f0293dc86f5fdf9acb1915))

</details>

<details>
<summary>trufflesecurity/trufflehog
(trufflesecurity/trufflehog)</summary>

###
[`v3.81.10`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.10)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.9...v3.81.10)

#### What's Changed

- fix(deps): update module github.com/sendgrid/sendgrid-go to
v3.15.0+incompatible by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3214](https://redirect.github.com/trufflesecurity/trufflehog/pull/3214)
- fix(deps): update module github.com/charmbracelet/bubbletea to v0.27.0
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3229](https://redirect.github.com/trufflesecurity/trufflehog/pull/3229)
- chore(deps): update golang docker tag to v1.23 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3228](https://redirect.github.com/trufflesecurity/trufflehog/pull/3228)
- fix(deps): update module github.com/prometheus/client_golang to
v1.20.1 by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3236](https://redirect.github.com/trufflesecurity/trufflehog/pull/3236)
- fix(deps): update module google.golang.org/api to v0.192.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3237](https://redirect.github.com/trufflesecurity/trufflehog/pull/3237)
- fix(deps): update module google.golang.org/api to v0.193.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3238](https://redirect.github.com/trufflesecurity/trufflehog/pull/3238)
- fix(deps): update testcontainers-go monorepo to v0.33.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3239](https://redirect.github.com/trufflesecurity/trufflehog/pull/3239)
- fix(deps): update module cloud.google.com/go/secretmanager to v1.14.0
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3240](https://redirect.github.com/trufflesecurity/trufflehog/pull/3240)
- Customize results cleaning (using smuggled interface) by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3235](https://redirect.github.com/trufflesecurity/trufflehog/pull/3235)
- Skip filtration for targeted scans by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3243](https://redirect.github.com/trufflesecurity/trufflehog/pull/3243)
- Strip leading +/- from GitHub target diffs by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3244](https://redirect.github.com/trufflesecurity/trufflehog/pull/3244)
- Th 899 postman panic issue by
[@&#8203;LaraCroftDev](https://redirect.github.com/LaraCroftDev) in
[https://github.com/trufflesecurity/trufflehog/pull/3245](https://redirect.github.com/trufflesecurity/trufflehog/pull/3245)
- Update rotation guide link for teams by
[@&#8203;hxnyk](https://redirect.github.com/hxnyk) in
[https://github.com/trufflesecurity/trufflehog/pull/3248](https://redirect.github.com/trufflesecurity/trufflehog/pull/3248)
- Download files when reverifying by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3252](https://redirect.github.com/trufflesecurity/trufflehog/pull/3252)
- \[chore] - Update buffer by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3255](https://redirect.github.com/trufflesecurity/trufflehog/pull/3255)

#### New Contributors

- [@&#8203;LaraCroftDev](https://redirect.github.com/LaraCroftDev) made
their first contribution in
[https://github.com/trufflesecurity/trufflehog/pull/3245](https://redirect.github.com/trufflesecurity/trufflehog/pull/3245)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.9...v3.81.10

###
[`v3.81.9`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.9)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.8...v3.81.9)

#### What's Changed

- Capture decoding time metric by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3209](https://redirect.github.com/trufflesecurity/trufflehog/pull/3209)
- fix(deps): update module cloud.google.com/go/secretmanager to v1.13.6
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3208](https://redirect.github.com/trufflesecurity/trufflehog/pull/3208)
- remove two letter keyword by
[@&#8203;0x1](https://redirect.github.com/0x1) in
[https://github.com/trufflesecurity/trufflehog/pull/3210](https://redirect.github.com/trufflesecurity/trufflehog/pull/3210)
- Add metrics for command invocation by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3185](https://redirect.github.com/trufflesecurity/trufflehog/pull/3185)
- chore(deps): update sigstore/cosign-installer action to v3.6.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3211](https://redirect.github.com/trufflesecurity/trufflehog/pull/3211)
- \[analyze] Capture the hierarchy of GitHub permissions by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3127](https://redirect.github.com/trufflesecurity/trufflehog/pull/3127)
- \[analyze] Fix GitHub token expiration parsing by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3205](https://redirect.github.com/trufflesecurity/trufflehog/pull/3205)
- \[chore] Fix lint errors by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3218](https://redirect.github.com/trufflesecurity/trufflehog/pull/3218)
- \[chore] Ignore analyzer implementation tests in test-community by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3219](https://redirect.github.com/trufflesecurity/trufflehog/pull/3219)
- Support for kebab case and dot notation in permission generation tool
by [@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3222](https://redirect.github.com/trufflesecurity/trufflehog/pull/3222)
- Improve domain / url handling in detectors by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3221](https://redirect.github.com/trufflesecurity/trufflehog/pull/3221)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.8...v3.81.9

###
[`v3.81.8`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.8)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.7...v3.81.8)

#### What's Changed

- \[analyze] Deduplicate finegrained GitHub permissions by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3196](https://redirect.github.com/trufflesecurity/trufflehog/pull/3196)
- fix(deps): update module golang.org/x/net to v0.28.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3187](https://redirect.github.com/trufflesecurity/trufflehog/pull/3187)
- \[analyze] Fix double-print in postgres analyzer by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3199](https://redirect.github.com/trufflesecurity/trufflehog/pull/3199)
- fix(deps): update module go.mongodb.org/mongo-driver to v1.16.1 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3197](https://redirect.github.com/trufflesecurity/trufflehog/pull/3197)
- Log when a detector ignores the timeout by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3201](https://redirect.github.com/trufflesecurity/trufflehog/pull/3201)
- \[bug] - Correctly Handle Large Files in BufferedReadSeeker by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3203](https://redirect.github.com/trufflesecurity/trufflehog/pull/3203)
- fix(deps): update module github.com/google/go-containerregistry to
v0.20.2 by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3184](https://redirect.github.com/trufflesecurity/trufflehog/pull/3184)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.7...v3.81.8

###
[`v3.81.7`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.7)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.6...v3.81.7)

#### What's Changed

- fix(deps): update module golang.org/x/crypto to v0.26.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3182](https://redirect.github.com/trufflesecurity/trufflehog/pull/3182)
- fix(deps): update module golang.org/x/text to v0.17.0 - autoclosed by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3183](https://redirect.github.com/trufflesecurity/trufflehog/pull/3183)
- \[analyze] Add analyze option to main TUI and unhide subcommand by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3186](https://redirect.github.com/trufflesecurity/trufflehog/pull/3186)
- Analyzer capitalization by
[@&#8203;hxnyk](https://redirect.github.com/hxnyk) in
[https://github.com/trufflesecurity/trufflehog/pull/3188](https://redirect.github.com/trufflesecurity/trufflehog/pull/3188)
- \[analyze] Bandaid solution for occasional slow startups by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3191](https://redirect.github.com/trufflesecurity/trufflehog/pull/3191)
- \[analyze] Add basic section to README by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3190](https://redirect.github.com/trufflesecurity/trufflehog/pull/3190)
- Fixes for a few finegrained token issues by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3194](https://redirect.github.com/trufflesecurity/trufflehog/pull/3194)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.6...v3.81.7

###
[`v3.81.6`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.6)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.5...v3.81.6)

#### What's Changed

- Auth GitHub in Init by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3131](https://redirect.github.com/trufflesecurity/trufflehog/pull/3131)
- fix(deps): update module github.com/envoyproxy/protoc-gen-validate to
v1.1.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3176](https://redirect.github.com/trufflesecurity/trufflehog/pull/3176)
- Analyze TUI by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3172](https://redirect.github.com/trufflesecurity/trufflehog/pull/3172)
- \[analyze] Separate SID from token in twilio analyzer by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3177](https://redirect.github.com/trufflesecurity/trufflehog/pull/3177)
- \[chore] Use custom HTTP client in sendgrid analyzer by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3178](https://redirect.github.com/trufflesecurity/trufflehog/pull/3178)
- Improve finegrained token support by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3179](https://redirect.github.com/trufflesecurity/trufflehog/pull/3179)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.5...v3.81.6

###
[`v3.81.5`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.5)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.4...v3.81.5)

#### What's Changed

- Update README.md for github experimental by
[@&#8203;joeleonjr](https://redirect.github.com/joeleonjr) in
[https://github.com/trufflesecurity/trufflehog/pull/3160](https://redirect.github.com/trufflesecurity/trufflehog/pull/3160)
- fix(deps): update module github.com/schollz/progressbar/v3 to v3.14.6
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3158](https://redirect.github.com/trufflesecurity/trufflehog/pull/3158)
- \[analyze] Fix off-by-one error in generated data structures by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3162](https://redirect.github.com/trufflesecurity/trufflehog/pull/3162)
- \[bug] - Create a new context with timeout per request by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3163](https://redirect.github.com/trufflesecurity/trufflehog/pull/3163)
- \[analyze] Use permission enum values in openai analyzer by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3165](https://redirect.github.com/trufflesecurity/trufflehog/pull/3165)
- update pattern by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3167](https://redirect.github.com/trufflesecurity/trufflehog/pull/3167)
- Update Zulip detector by
[@&#8203;rgmz](https://redirect.github.com/rgmz) in
[https://github.com/trufflesecurity/trufflehog/pull/2897](https://redirect.github.com/trufflesecurity/trufflehog/pull/2897)
- fix(deps): update module golang.org/x/oauth2 to v0.22.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3168](https://redirect.github.com/trufflesecurity/trufflehog/pull/3168)
- fix(deps): update module golang.org/x/sync to v0.8.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3169](https://redirect.github.com/trufflesecurity/trufflehog/pull/3169)
- fix(deps): update github.com/tailscale/depaware digest to
[`585336c`](https://redirect.github.com/trufflesecurity/trufflehog/commit/585336c)
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3166](https://redirect.github.com/trufflesecurity/trufflehog/pull/3166)
- Change log verbosity for detection errors by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3171](https://redirect.github.com/trufflesecurity/trufflehog/pull/3171)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.4...v3.81.5

###
[`v3.81.4`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.4)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.3...v3.81.4)

#### What's Changed

- \[bug] - add context timeout to ssh verification by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3161](https://redirect.github.com/trufflesecurity/trufflehog/pull/3161)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.3...v3.81.4

###
[`v3.81.3`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.3)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.2...v3.81.3)

#### What's Changed

- \[chore] - log detector type on error by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3159](https://redirect.github.com/trufflesecurity/trufflehog/pull/3159)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.2...v3.81.3

###
[`v3.81.2`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.2)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.1...v3.81.2)

#### What's Changed

- \[chore] - set custom transport for the Docker client by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3156](https://redirect.github.com/trufflesecurity/trufflehog/pull/3156)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.1...v3.81.2

###
[`v3.81.1`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.1)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.81.0...v3.81.1)

#### What's Changed

- \[chore] - enable block and mutex profiles by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3154](https://redirect.github.com/trufflesecurity/trufflehog/pull/3154)
- Add Analyzers interface for Square by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3141](https://redirect.github.com/trufflesecurity/trufflehog/pull/3141)
- Update module google.golang.org/api to v0.190.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3146](https://redirect.github.com/trufflesecurity/trufflehog/pull/3146)
- quick patch for cfor enumeration by
[@&#8203;joeleonjr](https://redirect.github.com/joeleonjr) in
[https://github.com/trufflesecurity/trufflehog/pull/3155](https://redirect.github.com/trufflesecurity/trufflehog/pull/3155)
- Add Analyzers interface for HuggingFace by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3140](https://redirect.github.com/trufflesecurity/trufflehog/pull/3140)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.81.0...v3.81.1

###
[`v3.81.0`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.81.0)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.80.6...v3.81.0)

#### What's Changed

- Add progress bar to CFOR by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3151](https://redirect.github.com/trufflesecurity/trufflehog/pull/3151)
- \[fix] Always configure the engine with the default detectors by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3152](https://redirect.github.com/trufflesecurity/trufflehog/pull/3152)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.80.6...v3.81.0

###
[`v3.80.6`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.80.6)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.80.5...v3.80.6)

#### What's Changed

- Add Analyze interface to Stripe by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3132](https://redirect.github.com/trufflesecurity/trufflehog/pull/3132)
- \[analyze] Combine access level into permission value by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3144](https://redirect.github.com/trufflesecurity/trufflehog/pull/3144)
- \[chore] - move automaxprocs to init by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3143](https://redirect.github.com/trufflesecurity/trufflehog/pull/3143)
- add twilio analyze relationships by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3148](https://redirect.github.com/trufflesecurity/trufflehog/pull/3148)
- \[chore] Only set default detectors if none are provided by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3147](https://redirect.github.com/trufflesecurity/trufflehog/pull/3147)
- CFOR Commit Scanner by
[@&#8203;joeleonjr](https://redirect.github.com/joeleonjr) in
[https://github.com/trufflesecurity/trufflehog/pull/3145](https://redirect.github.com/trufflesecurity/trufflehog/pull/3145)
- \[perf] - Leverage pgzip for Parallel decompression by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3149](https://redirect.github.com/trufflesecurity/trufflehog/pull/3149)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.80.5...v3.80.6

###
[`v3.80.5`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.80.5)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/3.80.4...v3.80.5)

#### What's Changed

- Add permissions lookup tables by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3125](https://redirect.github.com/trufflesecurity/trufflehog/pull/3125)
- Export maps from permission generation by
[@&#8203;hxnyk](https://redirect.github.com/hxnyk) in
[https://github.com/trufflesecurity/trufflehog/pull/3137](https://redirect.github.com/trufflesecurity/trufflehog/pull/3137)
- \[chore] - Set GOMAXPROCS by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3136](https://redirect.github.com/trufflesecurity/trufflehog/pull/3136)
- \[chore] - address linter by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3133](https://redirect.github.com/trufflesecurity/trufflehog/pull/3133)
- \[refactor] - Improve Performance by Shifting Concurrency from Image
to Layer Level by [@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3135](https://redirect.github.com/trufflesecurity/trufflehog/pull/3135)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/3.80.4...v3.80.5

###
[`v3.80.4`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/3.80.4)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.80.3...3.80.4)

#### What's Changed

- Analyzer partial implementations by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3114](https://redirect.github.com/trufflesecurity/trufflehog/pull/3114)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.55.5 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3116](https://redirect.github.com/trufflesecurity/trufflehog/pull/3116)
- Separate out printing statements with anlayzer logic for Shopify by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3123](https://redirect.github.com/trufflesecurity/trufflehog/pull/3123)
- Separate out printing statements with anlayzer logic for Square by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3122](https://redirect.github.com/trufflesecurity/trufflehog/pull/3122)
- Separate out printing statements with anlayzer logic for twilio by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3118](https://redirect.github.com/trufflesecurity/trufflehog/pull/3118)
- Add new canary ID by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3117](https://redirect.github.com/trufflesecurity/trufflehog/pull/3117)
- Update GitHub integration tests by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3124](https://redirect.github.com/trufflesecurity/trufflehog/pull/3124)
- Separate out printing statements with anlayzer logic for Slack by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3121](https://redirect.github.com/trufflesecurity/trufflehog/pull/3121)
- Separate out printing statements with anlayzer logic for Stripe by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3120](https://redirect.github.com/trufflesecurity/trufflehog/pull/3120)
- nitro detector was removed and needs to be deprecated by
[@&#8203;0x1](https://redirect.github.com/0x1) in
[https://github.com/trufflesecurity/trufflehog/pull/3102](https://redirect.github.com/trufflesecurity/trufflehog/pull/3102)
- Separate out printing statements with anlayzer logic for SourceGraph
by [@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3119](https://redirect.github.com/trufflesecurity/trufflehog/pull/3119)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.80.3...3.80.4

###
[`v3.80.3`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.80.3)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.80.2...v3.80.3)

#### What's Changed

- fix(deps): update module github.com/gabriel-vasile/mimetype to v1.4.5
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3108](https://redirect.github.com/trufflesecurity/trufflehog/pull/3108)
- \[chore] Move openai log message to proper function by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3105](https://redirect.github.com/trufflesecurity/trufflehog/pull/3105)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.55.3 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3107](https://redirect.github.com/trufflesecurity/trufflehog/pull/3107)
- \[analyze] Implement Analyzer interface for github by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3110](https://redirect.github.com/trufflesecurity/trufflehog/pull/3110)
- Support openai project and fine grained tokens by
[@&#8203;dustin-decker](https://redirect.github.com/dustin-decker) in
[https://github.com/trufflesecurity/trufflehog/pull/3112](https://redirect.github.com/trufflesecurity/trufflehog/pull/3112)
- \[analyze] Add description and user to openai metadata by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3111](https://redirect.github.com/trufflesecurity/trufflehog/pull/3111)
- \[chore] - Manually update Depedencies by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3106](https://redirect.github.com/trufflesecurity/trufflehog/pull/3106)
- Use non-canary credentials for AWS tests by
[@&#8203;rosecodym](https://redirect.github.com/rosecodym) in
[https://github.com/trufflesecurity/trufflehog/pull/3109](https://redirect.github.com/trufflesecurity/trufflehog/pull/3109)
- Include default detectors when using a config that contains detectors
by
[@&#8203;harmonherring-pro](https://redirect.github.com/harmonherring-pro)
in
[https://github.com/trufflesecurity/trufflehog/pull/3115](https://redirect.github.com/trufflesecurity/trufflehog/pull/3115)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.80.2...v3.80.3

###
[`v3.80.2`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.80.2)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.80.1...v3.80.2)

#### What's Changed

- Added Twitter v2 Detector by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3016](https://redirect.github.com/trufflesecurity/trufflehog/pull/3016)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.54.20 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3077](https://redirect.github.com/trufflesecurity/trufflehog/pull/3077)
- \[bug] - add verify check by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3079](https://redirect.github.com/trufflesecurity/trufflehog/pull/3079)
- \[chore] - Reduce `VerificationOverlapWorker`s by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3082](https://redirect.github.com/trufflesecurity/trufflehog/pull/3082)
- fix(deps): update module github.com/couchbase/gocb/v2 to v2.9.1 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3078](https://redirect.github.com/trufflesecurity/trufflehog/pull/3078)
- fix(deps): update golang.org/x/exp digest to
[`8a7402a`](https://redirect.github.com/trufflesecurity/trufflehog/commit/8a7402a)
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3083](https://redirect.github.com/trufflesecurity/trufflehog/pull/3083)
- fix(deps): update module github.com/googleapis/gax-go/v2 to v2.13.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3085](https://redirect.github.com/trufflesecurity/trufflehog/pull/3085)
- fix(deps): update module google.golang.org/api to v0.189.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3086](https://redirect.github.com/trufflesecurity/trufflehog/pull/3086)
- implemented a netsuite detector by
[@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3068](https://redirect.github.com/trufflesecurity/trufflehog/pull/3068)
- Remove onwater detector by
[@&#8203;trufflesteeeve](https://redirect.github.com/trufflesteeeve) in
[https://github.com/trufflesecurity/trufflehog/pull/3088](https://redirect.github.com/trufflesecurity/trufflehog/pull/3088)
- Fixed Crash issue in atlassian V2 if data in response is empty array
by [@&#8203;abmussani](https://redirect.github.com/abmussani) in
[https://github.com/trufflesecurity/trufflehog/pull/3091](https://redirect.github.com/trufflesecurity/trufflehog/pull/3091)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.55.1 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3087](https://redirect.github.com/trufflesecurity/trufflehog/pull/3087)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.55.2 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3094](https://redirect.github.com/trufflesecurity/trufflehog/pull/3094)
- \[chore] - remove deps from docker image by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3097](https://redirect.github.com/trufflesecurity/trufflehog/pull/3097)
- \[bug]- Invalid Seek for Non-Seekable Readers by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3095](https://redirect.github.com/trufflesecurity/trufflehog/pull/3095)
- chore: fix some comments by
[@&#8203;shangchenglumetro](https://redirect.github.com/shangchenglumetro)
in
[https://github.com/trufflesecurity/trufflehog/pull/3098](https://redirect.github.com/trufflesecurity/trufflehog/pull/3098)
- Analyze by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3099](https://redirect.github.com/trufflesecurity/trufflehog/pull/3099)
- fix(deps): update module cloud.google.com/go/secretmanager to v1.13.5
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3096](https://redirect.github.com/trufflesecurity/trufflehog/pull/3096)
- \[chore] Fix Versioner interface for twitter by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3104](https://redirect.github.com/trufflesecurity/trufflehog/pull/3104)
- Implement Analyzer interface for openai by
[@&#8203;mcastorina](https://redirect.github.com/mcastorina) in
[https://github.com/trufflesecurity/trufflehog/pull/3101](https://redirect.github.com/trufflesecurity/trufflehog/pull/3101)

#### New Contributors

-
[@&#8203;shangchenglumetro](https://redirect.github.com/shangchenglumetro)
made their first contribution in
[https://github.com/trufflesecurity/trufflehog/pull/3098](https://redirect.github.com/trufflesecurity/trufflehog/pull/3098)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.80.1...v3.80.2

###
[`v3.80.1`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.80.1)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.80.0...v3.80.1)

#### What's Changed

- fix(deps): update golang.org/x/exp digest to
[`e3f2596`](https://redirect.github.com/trufflesecurity/trufflehog/commit/e3f2596)
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3071](https://redirect.github.com/trufflesecurity/trufflehog/pull/3071)
- chore: fix goreleaser config and command line options for goreleaser
v2 by
[@&#8203;suzuki-shunsuke](https://redirect.github.com/suzuki-shunsuke)
in
[https://github.com/trufflesecurity/trufflehog/pull/3073](https://redirect.github.com/trufflesecurity/trufflehog/pull/3073)

#### New Contributors

- [@&#8203;suzuki-shunsuke](https://redirect.github.com/suzuki-shunsuke)
made their first contribution in
[https://github.com/trufflesecurity/trufflehog/pull/3073](https://redirect.github.com/trufflesecurity/trufflehog/pull/3073)

**Full Changelog**:
https://github.com/trufflesecurity/trufflehog/compare/v3.80.0...v3.80.1

###
[`v3.80.0`](https://redirect.github.com/trufflesecurity/trufflehog/releases/tag/v3.80.0)

[Compare
Source](https://redirect.github.com/trufflesecurity/trufflehog/compare/v3.79.0...v3.80.0)

#### What's Changed

- Add endorlabs detector by
[@&#8203;shreyas-sriram](https://redirect.github.com/shreyas-sriram) in
[https://github.com/trufflesecurity/trufflehog/pull/3015](https://redirect.github.com/trufflesecurity/trufflehog/pull/3015)
- New Source: HuggingFace by
[@&#8203;joeleonjr](https://redirect.github.com/joeleonjr) in
[https://github.com/trufflesecurity/trufflehog/pull/3000](https://redirect.github.com/trufflesecurity/trufflehog/pull/3000)
- Update README.md by
[@&#8203;joeleonjr](https://redirect.github.com/joeleonjr) in
[https://github.com/trufflesecurity/trufflehog/pull/3019](https://redirect.github.com/trufflesecurity/trufflehog/pull/3019)
- fixing docs by
[@&#8203;dylanTruffle](https://redirect.github.com/dylanTruffle) in
[https://github.com/trufflesecurity/trufflehog/pull/3022](https://redirect.github.com/trufflesecurity/trufflehog/pull/3022)
- fix(deps): update module github.com/charmbracelet/bubbletea to v0.26.6
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/2998](https://redirect.github.com/trufflesecurity/trufflehog/pull/2998)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.54.11 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3025](https://redirect.github.com/trufflesecurity/trufflehog/pull/3025)
- fix(deps): update module cloud.google.com/go/secretmanager to v1.13.2
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3024](https://redirect.github.com/trufflesecurity/trufflehog/pull/3024)
- fix(deps): update module github.com/brianvoe/gofakeit/v7 to v7.0.4 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3026](https://redirect.github.com/trufflesecurity/trufflehog/pull/3026)
- fix(deps): update module github.com/couchbase/gocb/v2 to v2.9.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3030](https://redirect.github.com/trufflesecurity/trufflehog/pull/3030)
- update LaunchDarkly detector to use the caller-identity API by
[@&#8203;pkaeding](https://redirect.github.com/pkaeding) in
[https://github.com/trufflesecurity/trufflehog/pull/3018](https://redirect.github.com/trufflesecurity/trufflehog/pull/3018)
- fix(deps): update module github.com/wasilibs/go-re2 to v1.6.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3033](https://redirect.github.com/trufflesecurity/trufflehog/pull/3033)
- fix(deps): update module github.com/xanzy/go-gitlab to v0.106.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3035](https://redirect.github.com/trufflesecurity/trufflehog/pull/3035)
- \[chore] - remove launchdarkly dep by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3034](https://redirect.github.com/trufflesecurity/trufflehog/pull/3034)
- Fix race in `caflou` and `ldap` detectors by
[@&#8203;rgmz](https://redirect.github.com/rgmz) in
[https://github.com/trufflesecurity/trufflehog/pull/3028](https://redirect.github.com/trufflesecurity/trufflehog/pull/3028)
- Elevenlabs detector by
[@&#8203;dylanTruffle](https://redirect.github.com/dylanTruffle) in
[https://github.com/trufflesecurity/trufflehog/pull/3023](https://redirect.github.com/trufflesecurity/trufflehog/pull/3023)
- fix(deps): update module go.mongodb.org/mongo-driver to v1.16.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3036](https://redirect.github.com/trufflesecurity/trufflehog/pull/3036)
- fix(deps): update module cloud.google.com/go/secretmanager to v1.13.3
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3037](https://redirect.github.com/trufflesecurity/trufflehog/pull/3037)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.54.14 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3042](https://redirect.github.com/trufflesecurity/trufflehog/pull/3042)
- fix(deps): update module cloud.google.com/go/storage to v1.43.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3043](https://redirect.github.com/trufflesecurity/trufflehog/pull/3043)
- fix(deps): update module golang.org/x/net to v0.27.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3046](https://redirect.github.com/trufflesecurity/trufflehog/pull/3046)
- fix(deps): update module golang.org/x/crypto to v0.25.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3045](https://redirect.github.com/trufflesecurity/trufflehog/pull/3045)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.54.15 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3049](https://redirect.github.com/trufflesecurity/trufflehog/pull/3049)
- fix(deps): update testcontainers-go monorepo to v0.32.0 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3050](https://redirect.github.com/trufflesecurity/trufflehog/pull/3050)
- \[chore] - remove dead Chunker code by
[@&#8203;ahrav](https://redirect.github.com/ahrav) in
[https://github.com/trufflesecurity/trufflehog/pull/3044](https://redirect.github.com/trufflesecurity/trufflehog/pull/3044)
- chore(deps): update goreleaser/goreleaser-action action to v6 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3051](https://redirect.github.com/trufflesecurity/trufflehog/pull/3051)
- fix(deps): update golang.org/x/exp digest to
[`46b0784`](https://redirect.github.com/trufflesecurity/trufflehog/commit/46b0784)
by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3053](https://redirect.github.com/trufflesecurity/trufflehog/pull/3053)
- fix(deps): update module github.com/aws/aws-sdk-go to v1.54.16 by
[@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3054](https://redirect.github.com/trufflesecurity/trufflehog/pull/3054)
- fix(deps): update module github.com/google/go-containerregistry to
v0.20.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in
[https://github.com/trufflesecurity/trufflehog/pull/3055](https://redirect.github.com/trufflesecurity/trufflehog/pull/3055)
- 

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" in timezone
Europe/London, Automerge - At any time (no schedule defined).

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

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/zkSync-Community-Hub/community-code).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to redwoodjs/redwood that referenced this pull request Sep 5, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | patch | `v4.1.1` -> `v4.1.7` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://redirect.github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://redirect.github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://redirect.github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://redirect.github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Josh-Walker-GM pushed a commit to redwoodjs/redwood that referenced this pull request Sep 5, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | patch | `v4.1.1` -> `v4.1.7` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4.1.7`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[actions/checkout#1739
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1697
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://redirect.github.com/orhantoy) in
[actions/checkout#1774
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1776

###
[`v4.1.6`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1732

###
[`v4.1.5`](https://redirect.github.com/actions/checkout/releases/tag/v4.1.5)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1695
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1707

**Full Changelog**:
actions/checkout@v4.1.4...v4.1.5

###
[`v4.1.4`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1692
- Add dependabot config by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1688
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1693
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[actions/checkout#1643

###
[`v4.1.3`](https://redirect.github.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[actions/checkout#1685

**Full Changelog**:
actions/checkout@v4.1.2...v4.1.3

###
[`v4.1.2`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://redirect.github.com/dscho) in
[actions/checkout#1598

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.

Newly added sparse checkout functionality is not cleaning up after itself
4 participants