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)

fuxingloh pushed a commit to fuxingloh/multi-labeler that referenced this pull request Apr 23, 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |

---

### Release Notes

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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/fuxingloh/multi-labeler).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to vetumorg/chainfile that referenced this pull request Apr 23, 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |
| [actions/checkout](https://togithub.com/actions/checkout) | action |
patch | `v4.1.2` -> `v4.1.3` |

---

### Release Notes

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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/fuxingloh/karfia).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/crypto-frontmatter that referenced this pull request Apr 23, 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |

---

### Release Notes

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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/fuxingloh/crypto-frontmatter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
lambchop4prez added a commit to lambchop4prez/network that referenced this pull request Apr 24, 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.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.3`](https://togithub.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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/lambchop4prez/network).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Apr 24, 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |

---

### Release Notes

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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/fuxingloh/contented).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot added a commit to weareinreach/TransMascFutures that referenced this pull request Apr 24, 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://togithub.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) |
| [actions/upload-artifact](https://togithub.com/actions/upload-artifact) | action | digest | `1746f4a` -> `6546280` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/actions/upload-artifact/badge)](https://securityscorecards.dev/viewer/?uri=github.com/actions/upload-artifact) |
| [github/codeql-action](https://togithub.com/github/codeql-action) | action | digest | `c7f9125` -> `8f596b4` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/github/codeql-action/badge)](https://securityscorecards.dev/viewer/?uri=github.com/github/codeql-action) |

---

### Release Notes

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

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

[Compare Source](https://togithub.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://togithub.com/jww3) in [actions/checkout#1650
-   Check git version before attempting to disable `sparse-checkout` by [@&#8203;jww3](https://togithub.com/jww3) in [actions/checkout#1656
-   Add SSH user parameter by [@&#8203;cory-miller](https://togithub.com/cory-miller) in [actions/checkout#1685

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

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

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

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday,before 4am on Thursday" (UTC), 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://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] 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/weareinreach/TransMascFutures).



PR-URL: #408
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
IanKrieger pushed a commit to brave/ads-ui that referenced this pull request Apr 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 | Pending |
|---|---|---|---|---|---|---|---|---|
| [@mui/x-data-grid](https://mui.com/x/react-data-grid/)
([source](https://togithub.com/mui/mui-x/tree/HEAD/packages/x-data-grid))
| [`7.2.0` ->
`7.3.0`](https://renovatebot.com/diffs/npm/@mui%2fx-data-grid/7.2.0/7.3.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-data-grid/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-data-grid/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-data-grid/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-data-grid/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor | |
|
[@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react))
| [`18.2.78` ->
`18.2.79`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.78/18.2.79)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.79?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.79?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.78/18.2.79?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.78/18.2.79?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch | |
|
[@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin)
([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin))
| [`7.6.0` ->
`7.7.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/7.6.0/7.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor | `7.7.1` |
|
[@typescript-eslint/parser](https://typescript-eslint.io/packages/parser)
([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser))
| [`7.6.0` ->
`7.7.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/7.6.0/7.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor | `7.7.1` |
| [actions/checkout](https://togithub.com/actions/checkout) | `v4.1.1`
-> `v4.1.3` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fcheckout/v4.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fcheckout/v4.1.3?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.3?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.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch | |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
`v3.24.10` -> `v3.25.1` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/github%2fcodeql-action/v3.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/github%2fcodeql-action/v3.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/github%2fcodeql-action/v3.24.10/v3.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/github%2fcodeql-action/v3.24.10/v3.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor | `v3.25.2` |
| [vite](https://vitejs.dev)
([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite)) |
[`5.2.8` ->
`5.2.10`](https://renovatebot.com/diffs/npm/vite/5.2.8/5.2.10) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.2.8/5.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.2.8/5.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch | |

---

### Release Notes

<details>
<summary>mui/mui-x (@&#8203;mui/x-data-grid)</summary>

###
[`v7.3.0`](https://togithub.com/mui/mui-x/blob/HEAD/CHANGELOG.md#730)

[Compare Source](https://togithub.com/mui/mui-x/compare/v7.2.0...v7.3.0)

*Apr 18, 2024*

We'd like to offer a big thanks to the 10 contributors who made this
release possible. Here are some highlights ✨:

- 📄 Support [unknown and estimated row count in server-side
pagination](https://mui.com/x/react-data-grid/pagination/#index-based-pagination)
([#&#8203;12490](https://togithub.com/mui/mui-x/issues/12490))
[@&#8203;MBilalShafi](https://togithub.com/MBilalShafi)

- 🎨 Support color scales in Charts
([#&#8203;12490](https://togithub.com/mui/mui-x/issues/12490))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
Add a [`colorMap`
configuration](https://mui.com/x/react-charts/styling/#values-color) to
an axis, and the chart will use it to select colors.
Each impacted chart ([bar
charts](https://mui.com/x/react-charts/bars/#color-scale), [line
charts](https://mui.com/x/react-charts/lines/#color-scale), [scatter
charts](https://mui.com/x/react-charts/scatter/#color-scale)) has a
dedicated section explaining how this color map is impacting it.

<img
src="https://github.com/mui/mui-x/assets/45398769/f0066606-3486-4c4e-b3be-7fdd56d763c3"
alt="scatter chart with gradient along y-axis" />

-   🌍 Improve Danish (da-DK) locale on the Data Grid

-   🐞 Bugfixes

-   📚 Documentation improvements

##### Data Grid

##### `@mui/x-data-grid@7.3.0`

- \[DataGrid] Fix calling `onCellEditStop` on error
([#&#8203;12747](https://togithub.com/mui/mui-x/issues/12747))
[@&#8203;sai6855](https://togithub.com/sai6855)
- \[DataGrid] Fix column resize
([#&#8203;12792](https://togithub.com/mui/mui-x/issues/12792))
[@&#8203;romgrk](https://togithub.com/romgrk)
- \[DataGrid] Fix column separators
([#&#8203;12808](https://togithub.com/mui/mui-x/issues/12808))
[@&#8203;romgrk](https://togithub.com/romgrk)
- \[DataGrid] Limit panel width to not exceed screen width
([#&#8203;12799](https://togithub.com/mui/mui-x/issues/12799))
[@&#8203;cherniavskii](https://togithub.com/cherniavskii)
- \[DataGrid] Support advanced server-side pagination use cases
([#&#8203;12474](https://togithub.com/mui/mui-x/issues/12474))
[@&#8203;MBilalShafi](https://togithub.com/MBilalShafi)
- \[DataGrid] Support state export and restore on grid density
([#&#8203;12671](https://togithub.com/mui/mui-x/issues/12671))
[@&#8203;MBilalShafi](https://togithub.com/MBilalShafi)
- \[l10n] Improve Danish (da-DK) locale
([#&#8203;12784](https://togithub.com/mui/mui-x/issues/12784))
[@&#8203;EmilBahnsen](https://togithub.com/EmilBahnsen)

##### `@mui/x-data-grid-pro@7.3.0`
[![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link
"Pro plan")

Same changes as in `@mui/x-data-grid@7.3.0`, plus:

- \[DataGridPro] Implement header filter height
([#&#8203;12666](https://togithub.com/mui/mui-x/issues/12666))
[@&#8203;romgrk](https://togithub.com/romgrk)

##### `@mui/x-data-grid-premium@7.3.0`
[![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link
"Premium plan")

Same changes as in `@mui/x-data-grid-pro@7.3.0`.

##### Charts

##### Breaking change

A typo fix:

```diff
- ContinuouseScaleName
+ ContinuousScaleName
```

##### `@mui/x-charts@7.3.0`

- \[charts] Add `dataIndex` to series `valueFormatter`
([#&#8203;12745](https://togithub.com/mui/mui-x/issues/12745))
[@&#8203;JCQuintas](https://togithub.com/JCQuintas)
- \[charts] Add color scale
([#&#8203;12490](https://togithub.com/mui/mui-x/issues/12490))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[charts] Do not document the usage of `DEFAULT_X_AXIS_KEY` and
`DEFAULT_Y_AXIS_KEY`
([#&#8203;12780](https://togithub.com/mui/mui-x/issues/12780))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[charts] Export more utils
([#&#8203;12744](https://togithub.com/mui/mui-x/issues/12744))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[charts] Fix passing slot props down to `PieArcLabel`
([#&#8203;12806](https://togithub.com/mui/mui-x/issues/12806))
[@&#8203;JCQuintas](https://togithub.com/JCQuintas)

##### Tree View

##### `@mui/x-tree-view@7.3.0`

- \[TreeView] Support `defaultMuiPrevented` on the `onFocus` prop of the
root slot ([#&#8203;12813](https://togithub.com/mui/mui-x/issues/12813))
[@&#8203;flaviendelangle](https://togithub.com/flaviendelangle)

##### Docs

- \[docs] Add grid cell display example to the migration guide
([#&#8203;12793](https://togithub.com/mui/mui-x/issues/12793))
[@&#8203;romgrk](https://togithub.com/romgrk)
- \[docs] Use charts classes objects
([#&#8203;12781](https://togithub.com/mui/mui-x/issues/12781))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[docs] Fix layout shift on demos
([#&#8203;12816](https://togithub.com/mui/mui-x/issues/12816))
[@&#8203;zanivan](https://togithub.com/zanivan)
- \[test] Increase timeout for test that sometimes fail on
`DateTimeRangePicker`
([#&#8203;12786](https://togithub.com/mui/mui-x/issues/12786))
[@&#8203;LukasTy](https://togithub.com/LukasTy)

##### Core

- \[docs-infra] Prepare infra to document charts interfaces
([#&#8203;12653](https://togithub.com/mui/mui-x/issues/12653))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/eslint-plugin)</summary>

###
[`v7.7.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#770-2024-04-15)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.6.0...v7.7.0)

##### 🚀 Features

- **eslint-plugin:** replace `no-new-symbol` with
`no-new-native-nonconstructor`

##### ❤️  Thank You

-   Dave
-   Josh Goldberg ✨

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/parser)</summary>

###
[`v7.7.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#770-2024-04-15)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.6.0...v7.7.0)

This was a version bump only for parser to align it with other projects,
there were no code changes.

You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

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

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

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

</details>

<details>
<summary>vitejs/vite (vite)</summary>

###
[`v5.2.10`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small5210-2024-04-20-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.2.9...v5.2.10)

- revert: perf: use workspace root for fs cache
([#&#8203;15712](https://togithub.com/vitejs/vite/issues/15712))
([#&#8203;16476](https://togithub.com/vitejs/vite/issues/16476))
([77e7359](https://togithub.com/vitejs/vite/commit/77e7359)), closes
[#&#8203;15712](https://togithub.com/vitejs/vite/issues/15712)
[#&#8203;16476](https://togithub.com/vitejs/vite/issues/16476)
- fix: add base to virtual html
([#&#8203;16442](https://togithub.com/vitejs/vite/issues/16442))
([721f94d](https://togithub.com/vitejs/vite/commit/721f94d)), closes
[#&#8203;16442](https://togithub.com/vitejs/vite/issues/16442)
- fix: adjust esm syntax judgment logic
([#&#8203;16436](https://togithub.com/vitejs/vite/issues/16436))
([af72eab](https://togithub.com/vitejs/vite/commit/af72eab)), closes
[#&#8203;16436](https://togithub.com/vitejs/vite/issues/16436)
- fix: don't add outDirs to watch.ignored if emptyOutDir is false
([#&#8203;16453](https://togithub.com/vitejs/vite/issues/16453))
([6a127d6](https://togithub.com/vitejs/vite/commit/6a127d6)), closes
[#&#8203;16453](https://togithub.com/vitejs/vite/issues/16453)
- fix(cspNonce): don't overwrite existing nonce values
([#&#8203;16415](https://togithub.com/vitejs/vite/issues/16415))
([b872635](https://togithub.com/vitejs/vite/commit/b872635)), closes
[#&#8203;16415](https://togithub.com/vitejs/vite/issues/16415)
- feat: show warning if root is in build.outDir
([#&#8203;16454](https://togithub.com/vitejs/vite/issues/16454))
([11444dc](https://togithub.com/vitejs/vite/commit/11444dc)), closes
[#&#8203;16454](https://togithub.com/vitejs/vite/issues/16454)
- feat: write cspNonce to style tags
([#&#8203;16419](https://togithub.com/vitejs/vite/issues/16419))
([8e54bbd](https://togithub.com/vitejs/vite/commit/8e54bbd)), closes
[#&#8203;16419](https://togithub.com/vitejs/vite/issues/16419)
- chore(deps): update dependency eslint-plugin-n to v17
([#&#8203;16381](https://togithub.com/vitejs/vite/issues/16381))
([6cccef7](https://togithub.com/vitejs/vite/commit/6cccef7)), closes
[#&#8203;16381](https://togithub.com/vitejs/vite/issues/16381)

###
[`v5.2.9`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small529-2024-04-15-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.2.8...v5.2.9)

- fix: `fsp.rm` removing files does not take effect
([#&#8203;16032](https://togithub.com/vitejs/vite/issues/16032))
([b05c405](https://togithub.com/vitejs/vite/commit/b05c405)), closes
[#&#8203;16032](https://togithub.com/vitejs/vite/issues/16032)
- fix: fix accumulated stacks in error overlay
([#&#8203;16393](https://togithub.com/vitejs/vite/issues/16393))
([102c2fd](https://togithub.com/vitejs/vite/commit/102c2fd)), closes
[#&#8203;16393](https://togithub.com/vitejs/vite/issues/16393)
- fix(deps): update all non-major dependencies
([#&#8203;16376](https://togithub.com/vitejs/vite/issues/16376))
([58a2938](https://togithub.com/vitejs/vite/commit/58a2938)), closes
[#&#8203;16376](https://togithub.com/vitejs/vite/issues/16376)
- chore: update region comment
([#&#8203;16380](https://togithub.com/vitejs/vite/issues/16380))
([77562c3](https://togithub.com/vitejs/vite/commit/77562c3)), closes
[#&#8203;16380](https://togithub.com/vitejs/vite/issues/16380)
- perf: reduce size of injected \__vite\_\_mapDeps code
([#&#8203;16184](https://togithub.com/vitejs/vite/issues/16184))
([c0ec6be](https://togithub.com/vitejs/vite/commit/c0ec6be)), closes
[#&#8203;16184](https://togithub.com/vitejs/vite/issues/16184)
- perf(css): only replace empty chunk if imported
([#&#8203;16349](https://togithub.com/vitejs/vite/issues/16349))
([e2658ad](https://togithub.com/vitejs/vite/commit/e2658ad)), closes
[#&#8203;16349](https://togithub.com/vitejs/vite/issues/16349)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "* 0-4 * * 3" (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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/brave/ads-ui).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Racer159 added a commit to defenseunicorns/uds-package-coder that referenced this pull request Apr 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | minor | `v3.24.9` -> `v3.25.2` |

---

### Release Notes

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/github/codeql-action/compare/v3.25.1...v3.25.2)

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

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

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

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

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

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

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

</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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/defenseunicorns/uds-package-coder).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Wayne Starr <Racer159@users.noreply.github.com>
Racer159 pushed a commit to defenseunicorns/uds-package-gitlab-runner 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/dependency-review-action](https://togithub.com/actions/dependency-review-action)
| action | minor | `v4.2.5` -> `v4.3.1` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

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

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

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

#### New Contributors

- [@&#8203;bteng22](https://togithub.com/bteng22) made their first
contribution in
[actions/dependency-review-action#733
- [@&#8203;lukehinds](https://togithub.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://togithub.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

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

##### Features

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

##### Miscellaneous

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

</details>

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

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

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

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

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

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

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

</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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/defenseunicorns/uds-package-gitlab-runner).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://togithub.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://togithub.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://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

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

##### Features

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

##### Miscellaneous

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

</details>

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

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

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

</details>

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

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://togithub.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |
|
[renovatebot/pre-commit-hooks](https://togithub.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://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

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

##### Features

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

##### Miscellaneous

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

</details>

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

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

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

#### New Contributors

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

**Full Changelog**:
defenseunicorns/zarf@v0.33.0...v0.33.1

</details>

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

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.329.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.327.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.3)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.325.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.325.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.323.3)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.323.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.322.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.320.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.320.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.318.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.318.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.316.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.316.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.315.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.315.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.314.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.313.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.313.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.311.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.310.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.310.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.309.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.308.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.306.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.306.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.305.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.304.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.303.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.303.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.302.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/dependency-review-action](https://togithub.com/actions/dependency-review-action)
| action | minor | `v4.2.5` -> `v4.3.1` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://togithub.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |
|
[renovatebot/pre-commit-hooks](https://togithub.com/renovatebot/pre-commit-hooks)
| repository | minor | `37.301.6` -> `37.329.0` |
|
[step-security/harden-runner](https://togithub.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://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

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

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

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

#### New Contributors

- [@&#8203;bteng22](https://togithub.com/bteng22) made their first
contribution in
[actions/dependency-review-action#733
- [@&#8203;lukehinds](https://togithub.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://togithub.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

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

##### Features

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

##### Miscellaneous

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

</details>

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

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

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

#### New Contributors

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

**Full Changelog**:
defenseunicorns/zarf@v0.33.0...v0.33.1

</details>

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

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.329.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.327.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.3)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.325.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.325.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.323.3)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.323.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.322.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.320.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.320.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.318.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.318.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.316.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.316.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.315.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.315.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.314.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.313.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.313.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.311.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.310.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.310.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.309.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.308.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.306.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.306.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.305.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.304.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.303.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.303.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.302.0)

[Compare
Source](https://togithub.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://togithub.com/step-security/harden-runner/releases/tag/v2.7.1)

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

##### What's Changed

Release v2.7.1 by
[@&#8203;varunsh-coder](https://togithub.com/varunsh-coder),
[@&#8203;h0x0er](https://togithub.com/h0x0er),
[@&#8203;ashishkurmi](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| | minor | `v0.3.11` -> `v0.4.0` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| action | minor | `v0.3.11` -> `v0.4.0` |
| [defenseunicorns/zarf](https://togithub.com/defenseunicorns/zarf) | |
patch | `v0.33.0` -> `v0.33.1` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | patch | `v3.25.0` -> `v3.25.3` |
|
[renovatebot/pre-commit-hooks](https://togithub.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://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.0)

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

##### Features

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

##### Miscellaneous

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

</details>

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

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

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

#### New Contributors

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

**Full Changelog**:
defenseunicorns/zarf@v0.33.0...v0.33.1

</details>

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

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.329.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.327.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.3)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.326.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.325.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.325.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.324.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.323.3)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.323.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.322.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.321.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.320.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.320.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.319.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.318.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.318.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.316.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.316.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.315.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.315.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.314.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.313.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.313.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.311.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.310.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.310.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.309.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.308.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.306.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.306.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.305.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.304.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.303.2)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.303.1)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/pre-commit-hooks/releases/tag/37.302.0)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.com/actions/checkout) | | patch |
`v4.1.1` -> `v4.1.4` |
| [actions/checkout](https://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.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://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[renovatebot/github-action](https://togithub.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://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

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

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

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

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

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

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

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

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

</details>

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

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

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

##### Documentation

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

##### Miscellaneous Chores

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

##### Build System

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

##### Continuous Integration

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/github-action/commit/28c9d1328d2b9927865b827c219075768a539340))
- update references to renovatebot/github-action to v40.1.9
([e56f8be](https://togithub.com/renovatebot/github-action/commit/e56f8be2d72af37f84ccb5e513860984f1f81857))

##### Miscellaneous Chores

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

##### Build System

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

##### Continuous Integration

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

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

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

##### Miscellaneous Chores

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

##### Build System

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

##### Continuous Integration

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/github-action/commit/cab4404ce1020d2c321583982926de65e3c16666))
- update references to ghcr.io/renovatebot/renovate to v37.280.0
([a127536](https://togithub.com/renovatebot/github-action/commit/a1275366196c84042fff0c67e6c0a43d61822e76))
- update references to renovatebot/github-action to v40.1.7
([d22441a](https://togithub.com/renovatebot/github-action/commit/d22441ac433a295b98775498049fbdf0ef0fe7cd))

##### Miscellaneous Chores

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

##### Build System

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

##### Continuous Integration

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

---

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

---

This PR has been generated by [Renovate
Bot](https://togithub.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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |
|
[actions/download-artifact](https://togithub.com/actions/download-artifact)
| action | patch | `v4.1.4` -> `v4.1.7` |
| [actions/setup-go](https://togithub.com/actions/setup-go) | action |
patch | `v5.0.0` -> `v5.0.1` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
| [codecov/codecov-action](https://togithub.com/codecov/codecov-action)
| action | patch | `v4.3.0` -> `v4.3.1` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | minor | `v3.24.10` -> `v3.25.3` |
|
[golangci/golangci-lint-action](https://togithub.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://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

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

#### What's Changed

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

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/download-artifact#324

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

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

[Compare
Source](https://togithub.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://togithub.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://togithub.com/actions/setup-go/releases/tag/v5.0.1)

[Compare
Source](https://togithub.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://togithub.com/dependabot) ,
[@&#8203;HarithaVattikuti](https://togithub.com/HarithaVattikuti) in
[actions/setup-go#465
- Update documentation with latest V5 release notes by
[@&#8203;ab](https://togithub.com/ab) in
[actions/setup-go#459
- Update version documentation by
[@&#8203;178inaba](https://togithub.com/178inaba) in
[actions/setup-go#458
- Documentation update of `actions/setup-go` to v5 by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[actions/setup-go#449

#### New Contributors

- [@&#8203;ab](https://togithub.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://togithub.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/codecov/codecov-action/compare/v4.3.0...v4.3.1)

[Compare
Source](https://togithub.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://togithub.com/github/codeql-action/compare/v3.25.2...v3.25.3)

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

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/golangci/golangci-lint-action/releases/tag/v4.0.1)

[Compare
Source](https://togithub.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://togithub.com/178inaba) in
[golangci/golangci-lint-action#977

##### Dependencies

- build(deps): bump
[@&#8203;types/semver](https://togithub.com/types/semver) from 7.5.6 to
7.5.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#969
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 6.20.0 to 6.21.0 by
[@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#971
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 6.20.0 to 6.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#973
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.16 to
20.11.17 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#972
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.17 to
20.11.19 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#979
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 6.21.0 to 7.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#980
- build(deps): bump undici from 5.26.3 to 5.28.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#976
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.19 to
20.11.20 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#985
- build(deps): bump
[@&#8203;types/semver](https://togithub.com/types/semver) from 7.5.7 to
7.5.8 by [@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#987
- build(deps): bump tmp from 0.2.1 to 0.2.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#989
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 6.21.0 to 7.1.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#988
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.20 to
20.11.24 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#990
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 7.1.0 to 7.1.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#991
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.24 to
20.11.25 by [@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#993
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.1.0 to 7.1.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#994
- build(deps): bump
[@&#8203;actions/http-client](https://togithub.com/actions/http-client)
from 2.2.0 to 2.2.1 by
[@&#8203;dependabot](https://togithub.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://togithub.com/dependabot)
in
[golangci/golangci-lint-action#997
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 7.1.1 to 7.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#998
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.25 to
20.11.28 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1000
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.1.1 to 7.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#999
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.2.0 to 7.3.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1003
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.28 to
20.11.30 by [@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#1005
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 7.2.0 to 7.3.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1006
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.11.30 to
20.12.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1007
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.3.1 to 7.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1008
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 7.3.1 to 7.4.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1009
- build(deps): bump undici from 5.28.3 to 5.28.4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#1011
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.12.2 to
20.12.5 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1012
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.4.0 to 7.5.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1013
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 7.4.0 to 7.5.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1014
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.12.5 to
20.12.7 by [@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#1017
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.5.0 to 7.6.0 by
[@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[golangci/golangci-lint-action#1018
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 7.5.0 to 7.7.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1022
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
from 7.6.0 to 7.7.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[golangci/golangci-lint-action#1023

#### New Contributors

- [@&#8203;178inaba](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.4` |

---

### Release Notes

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.5` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[defenseunicorns/uds-cli](https://togithub.com/defenseunicorns/uds-cli)
| | minor | `v0.9.0` -> `v0.10.4` |
|
[defenseunicorns/uds-common](https://togithub.com/defenseunicorns/uds-common)
| | minor | `v0.3.10` -> `v0.4.2` |
|
[defenseunicorns/uds-common](https://togithub.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://togithub.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://togithub.com/actions/checkout/releases/tag/v4.1.5)

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

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.10.4)

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

##### What's Changed

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

##### New Contributors

- [@&#8203;ZachGallagher](https://togithub.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://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.10.3)

[Compare
Source](https://togithub.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://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#543
- feat: allow dup pkgs in a bundle by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#533

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.2...v0.10.3

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

[Compare
Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.10.1...v0.10.2)

##### What's Changed

- chore: adds TUI tests by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#530
- feat: adds retries flag by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#532
- chore(deps): update podinfo to v6.6.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#528
- fix: nil check pkg components in TUI by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#538
- fix: bumps retries to 3 by default to match Zarf by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#535
- chore: adds registry health check for tests by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#534
- feat: enables setting namespaces in bundled Helm charts by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#539
- fix: adds global GracefulPanic and checks to deploy TUI by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#542

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.1...v0.10.2

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

[Compare
Source](https://togithub.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://togithub.com/renovate) in
[defenseunicorns/uds-cli#526
- fix(deps): update module github.com/charmbracelet/lipgloss to v0.10.0
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#525
- fix(deps): update module github.com/charmbracelet/bubbles to v0.18.0
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#524
- fix(deps): update golang.org/x/exp digest to
[`a685a6e`](https://togithub.com/defenseunicorns/uds-cli/commit/a685a6e)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#522
- fix(deps): update module oras.land/oras-go/v2 to v2.5.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#520
- fix: err when deploying with BubbleTea with no cluster by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#527

**Full Changelog**:
defenseunicorns/uds-cli@v0.10.0...v0.10.1

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

[Compare
Source](https://togithub.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://togithub.com/decleaver) in
[defenseunicorns/uds-cli#511
- chore(deps): update github/codeql-action action to v3.24.8 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#512
- fix(deps): update golang.org/x/exp digest to
[`a85f2c6`](https://togithub.com/defenseunicorns/uds-cli/commit/a85f2c6)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#510
- feat: adds --set to helm override vars by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#515
- fix: vendored in zarf version tag by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#518
- chore(deps): update github/codeql-action action to v3.24.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#519
- feat: beautiful TUI round 3 by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#509

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.4...v0.10.0

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

[Compare
Source](https://togithub.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://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#490
- fix(deps): update module github.com/stretchr/testify to v1.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#484
- chore: enhance development workflow with unified linting and tool by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#472
- fix: add a wait to the registry startup during tests by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#499
- fix: ensure manifest config is included with pulls by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#503
- fix: autocomplete and vendor refactor by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#502
- chore(deps): update docker/setup-buildx-action action to v3.2.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#508
- chore(deps): update docker/login-action action to v3.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#504
- chore(deps): update github/codeql-action action to v3.24.7 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#501
- fix(deps): update module helm.sh/helm/v3 to v3.14.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#507
- fix: pass UDS_ARCHITECTURE to runner by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#506
- chore(deps): update anchore/sbom-action action to v0.15.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#489

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.3...v0.9.4

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

[Compare
Source](https://togithub.com/defenseunicorns/uds-cli/compare/v0.9.2...v0.9.3)

##### What's Changed

- fix: toctou for files by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#443
- fix: path traversal bug by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#454
- fix: updates Zarf version in README by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#460
- chore: fixed the dangerous workflow by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#465
- chore(deps): update docker/setup-buildx-action action to v3.1.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#470
- chore(deps): update actions/download-artifact action to v4.1.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#467
- chore(deps): update github/codeql-action action to v3.24.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#457
- fix(deps): update golang.org/x/exp digest to
[`814bf88`](https://togithub.com/defenseunicorns/uds-cli/commit/814bf88)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#456
- fix: refactors tests and fixes bugs by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#464
- chore(deps): update podinfo to v6.6.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#462
- chore(deps): update zarf to v0.32.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#468
- chore(deps): update github/codeql-action action to v3.24.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#482
- chore: refactor pull operation by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#473
- chore: add UDS Core smoke test by
[@&#8203;justin-o12](https://togithub.com/justin-o12) in
[defenseunicorns/uds-cli#474
- fix: adds better err messaging when remote fails to resolve by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#486
- chore(deps): update actions/download-artifact action to v4.1.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#485
- fix(deps): update module golang.org/x/mod to v0.16.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#487
- chore: vendor runner by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#481
- fix: adds k3d to smoke test by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#488

##### New Contributors

- [@&#8203;justin-o12](https://togithub.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://togithub.com/defenseunicorns/uds-cli/releases/tag/v0.9.2)

[Compare
Source](https://togithub.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://togithub.com/renovate) in
[defenseunicorns/uds-cli#450
- fix: relative paths for bundle create by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#453

**Full Changelog**:
defenseunicorns/uds-cli@v0.9.1...v0.9.2

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

[Compare
Source](https://togithub.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://togithub.com/renovate) in
[defenseunicorns/uds-cli#432
- fix(deps): update module helm.sh/helm/v3 to v3.14.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#429
- chore(deps): update github/codeql-action action to v3.24.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#421
- fix(deps): update golang.org/x/exp digest to
[`ec58324`](https://togithub.com/defenseunicorns/uds-cli/commit/ec58324)
by [@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#420
- fix: add support for zarf dev lint by
[@&#8203;Racer159](https://togithub.com/Racer159) in
[defenseunicorns/uds-cli#436
- fix: case sensitivity in override vars by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#433
- feat: alias vendored zarf to z by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#424
- fix: use tmpdir if provided by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#431
- feat: import all vars exported from package by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#428
- fix: gosec lint issues for the pkg by
[@&#8203;naveensrinivasan](https://togithub.com/naveensrinivasan) in
[defenseunicorns/uds-cli#444
- chore: ensure PR workflows can't write to GHCR by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#446
- chore: addresses github linter findings by
[@&#8203;UncleGedd](https://togithub.com/UncleGedd) in
[defenseunicorns/uds-cli#447
- feat: imported vars as override values by
[@&#8203;decleaver](https://togithub.com/decleaver) in
[defenseunicorns/uds-cli#423
- chore(deps): update github/codeql-action action to v3.24.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[defenseunicorns/uds-cli#451

##### New Contributors

- [@&#8203;naveensrinivasan](https://togithub.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://togithub.com/defenseunicorns/uds-common/releases/tag/v0.4.2)

[Compare
Source](https://togithub.com/defenseunicorns/uds-common/compare/v0.4.1...v0.4.2)

##### Miscellaneous

- give doug a mattermostid attribute and update uds version
([#&#8203;120](https://togithub.com/defenseunicorns/uds-common/issues/120))
([4a85172](https://togithub.com/defenseunicorns/uds-common/commit/4a851720a8ac7e62826efda9e92200ba3a5b6709))

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

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

##### Miscellaneous

- **deps:** update uds common support dependencies
([#&#8203;116](https://togithub.com/defenseunicorns/uds-common/issues/116))
([8aed1e0](https://togithub.com/defenseunicorns/uds-common/commit/8aed1e0ae8b4d65f7418664e8f2c73a16bf42801))

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

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

##### Features

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

##### Miscellaneous

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

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

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

##### Miscellaneous

- add a default uds task to deploy podinfo
([#&#8203;108](https://togithub.com/defenseunicorns/uds-common/issues/108))
([c60e1ba](https://togithub.com/defenseunicorns/uds-common/commit/c60e1ba4888635ace4839e158b4dc476c11a8e7c))
- add a UDS package CR to make the package better for testing
([#&#8203;102](https://togithub.com/defenseunicorns/uds-common/issues/102))
([cf74934](https://togithub.com/defenseunicorns/uds-common/commit/cf749343a72db09f46cc054ff463454cdb8c4b74))
- **deps:** update uds common package dependencies to v6.6.2
([#&#8203;107](https://togithub.com/defenseunicorns/uds-common/issues/107))
([b6a18b0](https://togithub.com/defenseunicorns/uds-common/commit/b6a18b039711998bb6d3c90db25a4f42f49c5eb3))
- pull the current bundle and package names when deploying
([#&#8203;103](https://togithub.com/defenseunicorns/uds-common/issues/103))
([4b27106](https://togithub.com/defenseunicorns/uds-common/commit/4b27106a55775b725be217818f4be8d711340e95))
- update codeowners
([#&#8203;105](https://togithub.com/defenseunicorns/uds-common/issues/105))
([2e23ae3](https://togithub.com/defenseunicorns/uds-common/commit/2e23ae3a9a70189ca7d9671f3454158bb71a7ed6))

</details>

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

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

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

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

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

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

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

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

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

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

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

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

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

###
[`v3.24.9`](https://togithub.com/github/codeql-action/compare/v3.24.8...v3.24.9)

[Compare
Source](https://togithub.com/github/codeql-action/compare/v3.24.8...v3.24.9)

###
[`v3.24.8`](https://togithub.com/github/codeql-action/compare/v3.24.7...v3.24.8)

[Compare
Source](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.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://togithub.com/actions/checkout/releases/tag/v4.1.5)

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

##### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

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

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.com/renovatebot/renovate).

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

Co-authored-by: mazi-renovate[bot] <161091290+mazi-renovate[bot]@users.noreply.github.com>
itsacoyote pushed a commit to matter-labs/docs-nuxt-template that referenced this pull request May 14, 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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.5` |

---

### Release Notes

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

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

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

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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/matter-labs/docs-nuxt-template).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM1MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.6` |
|
[actions/download-artifact](https://togithub.com/actions/download-artifact)
| action | patch | `v4.1.4` -> `v4.1.7` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
|
[ianlewis/todo-issue-reopener](https://togithub.com/ianlewis/todo-issue-reopener)
| action | patch | `v1.2.0` -> `v1.2.1` |
| [ossf/scorecard-action](https://togithub.com/ossf/scorecard-action) |
action | patch | `v2.3.0` -> `v2.3.3` |
|
[sigstore/cosign-installer](https://togithub.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://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

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

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1732

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

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

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

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

#### What's Changed

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

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/download-artifact#324

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

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

[Compare
Source](https://togithub.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://togithub.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://togithub.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/ianlewis/todo-issue-reopener/releases/tag/v1.2.1)

[Compare
Source](https://togithub.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://togithub.com/ianlewis/todo-issue-reopener/issues/688)).

#### All changes

- fix: Update slsa-verifier version by
[@&#8203;ianlewis](https://togithub.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://togithub.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://togithub.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://togithub.com/dependabot) in
[ianlewis/todo-issue-reopener#670
- chore(deps-dev): Bump
[@&#8203;types/jest](https://togithub.com/types/jest) from 29.5.11 to
29.5.12 by [@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[ianlewis/todo-issue-reopener#605
- chore(deps): Bump yamllint from 1.33.0 to 1.35.1 by
[@&#8203;dependabot](https://togithub.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://togithub.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://togithub.com/dependabot) in
[ianlewis/todo-issue-reopener#604
- chore(deps): Bump yaml from 2.3.4 to 2.4.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[ianlewis/todo-issue-reopener#727
- chore(deps-dev): Bump
[@&#8203;vercel/ncc](https://togithub.com/vercel/ncc) from 0.36.1 to
0.38.1 by [@&#8203;dependabot](https://togithub.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://togithub.com/dependabot) in
[ianlewis/todo-issue-reopener#634
- chore(release): v1.2.1 by
[@&#8203;ianlewis](https://togithub.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://togithub.com/ossf/scorecard-action/releases/tag/v2.3.3)

[Compare
Source](https://togithub.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://togithub.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://togithub.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://togithub.com/spencerschrock) in
[ossf/scorecard-action#1377

For a full changelist of what these include, see the
[v5.0.0-rc1](https://togithub.com/ossf/scorecard/releases/tag/v5.0.0-rc1)
and
[v5.0.0-rc2](https://togithub.com/ossf/scorecard/releases/tag/v5.0.0-rc2)
release notes.

##### Documentation

- 📖 Move token discussion out of main README. by
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#1279
- 📖 link to `ossf/scorecard` workflow instead of maintaining an
example by [@&#8203;spencerschrock](https://togithub.com/spencerschrock)
in
[ossf/scorecard-action#1352
- 📖 update api links to new scorecard.dev site by
[@&#8203;spencerschrock](https://togithub.com/spencerschrock) in
[ossf/scorecard-action#1376

**Full Changelog**:
ossf/scorecard-action@v2.3.1...v2.3.3

###
[`v2.3.2`](https://togithub.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2)

[Compare
Source](https://togithub.com/ossf/scorecard-action/compare/v2.3.1...v2.3.2)

###
[`v2.3.1`](https://togithub.com/ossf/scorecard-action/releases/tag/v2.3.1)

[Compare
Source](https://togithub.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://togithub.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://togithub.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://togithub.com/sigstore/cosign-installer/releases/tag/v3.5.0)

[Compare
Source](https://togithub.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://togithub.com/dependabot) in
[sigstore/cosign-installer#157
- use go 1.22 now by
[@&#8203;bobcallaway](https://togithub.com/bobcallaway) in
[sigstore/cosign-installer#160
- bump default version to v2.2.4, prep for v3.5.0 release by
[@&#8203;bobcallaway](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.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://togithub.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.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://togithub.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.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://togithub.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.6` |

---

### Release Notes

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

###
[`v4.1.6`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

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

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1732

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

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

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.6` |

---

### Release Notes

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

###
[`v4.1.6`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

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

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1732

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

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

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://togithub.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://togithub.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://togithub.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://togithub.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://togithub.com/actions/checkout) | ->
`a5ac7e5` | | | | | action | pinDigest |
|
[actions/upload-artifact](https://togithub.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://togithub.com/aws-actions/configure-aws-credentials)
| -> `e3dd6a4` | | | | | action | pinDigest |
|
[hashicorp/setup-terraform](https://togithub.com/hashicorp/setup-terraform)
| -> `651471c` | | | | | action | pinDigest |

---

### Release Notes

<details>
<summary>conventional-changelog/commitlint
(@&#8203;commitlint/cli)</summary>

###
[`v19.3.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1930-2024-04-23)

[Compare
Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.2.2...v19.3.0)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

####
[19.2.2](https://togithub.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2)
(2024-04-14)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

####
[19.2.1](https://togithub.com/conventional-changelog/commitlint/compare/v19.2.0...v19.2.1)
(2024-03-19)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

###
[`v19.2.2`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1922-2024-04-14)

[Compare
Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2)

**Note:** Version bump only for package
[@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

</details>

<details>
<summary>conventional-changelog/commitlint
(@&#8203;commitlint/config-conventional)</summary>

###
[`v19.2.2`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/config-conventional/CHANGELOG.md#1922-2024-04-14)

[Compare
Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.1.0...v19.2.2)

**Note:** Version bump only for package
[@&#8203;commitlint/config-conventional](https://togithub.com/commitlint/config-conventional)

</details>

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

###
[`v4.1.6`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

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

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1732

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

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

#### What's Changed

- Update NPM dependencies by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1703
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1694
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/checkout#1696
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.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://togithub.com/cory-miller) in
[actions/checkout#1707

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

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

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

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

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

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

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

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

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

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

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&#8203;andrewakim](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://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://togithub.com/actions/checkout) | action |
patch | `v4.1.1` -> `v4.1.3` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | patch | `v4.3.1` -> `v4.3.3` |
| [github/codeql-action](https://togithub.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://togithub.com/actions/checkout/releases/tag/v4.1.3)

[Compare
Source](https://togithub.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://togithub.com/jww3) in
[actions/checkout#1650
- Check git version before attempting to disable `sparse-checkout` by
[@&open-telemetry#8203;jww3](https://togithub.com/jww3) in
[actions/checkout#1656
- Add SSH user parameter by
[@&open-telemetry#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1685

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

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

[Compare
Source](https://togithub.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://togithub.com/dscho) in
[actions/checkout#1598

</details>

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

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

[Compare
Source](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#565

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

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

[Compare
Source](https://togithub.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://togithub.com/konradpabjan) in
[actions/upload-artifact#516
- Minor fix to the migration readme by
[@&open-telemetry#8203;andrewakim](https://togithub.com/andrewakim) in
[actions/upload-artifact#523
- Update readme with v3/v2/v1 deprecation notice by
[@&open-telemetry#8203;robherley](https://togithub.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://togithub.com/eggyhead) in
[actions/upload-artifact#562

#### New Contributors

- [@&open-telemetry#8203;andrewakim](https://togithub.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://togithub.com/github/codeql-action/compare/v3.25.1...v3.25.2)

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

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

[Compare
Source](https://togithub.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://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector).

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

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