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

[bug] Unable to download artifact(s): Unable to download and extract artifact: Request timeout #249

Closed
mathbunnyru opened this issue Dec 14, 2023 · 38 comments · Fixed by #274
Labels
bug Something isn't working

Comments

@mathbunnyru
Copy link

What happened?

My GitHub workflow tried to download an artifact and got the following error:

Unable to download artifact(s): Unable to download and extract artifact: Request timeout: /actions-results/48835bcc-3d9d-48c1-9b25-e61724c412e6/workflow-job-run-133fda40-ba8c-5571-226b-e94c9a723dbe/artifacts/scipy-notebook-x86_64.zip?se=2023-12-14T22%3A41%3A57Z&sig=kIu7CPVgJ9myrpzJC9NS%2FLVc8z8fcQtdDXC0sDa5DVc%3D&sp=r&spr=https&sr=b&st=2023-12-14T22%3A31%3A57Z&sv=2021-12-02

The link is here:
https://github.com/jupyter/docker-stacks/actions/runs/7214568077

What did you expect to happen?

Successful run

How can we reproduce it?

Possibly fork jupyter/docker-stacks and run the docker.yml workflow

Anything else we need to know?

I tried to restart the build a few times - seems to work sometimes.
The runner which downloads the artifact is a GitHub-hosted runner.

What version of the action are you using?

v4

What are your runner environments?

linux

Are you on GitHub Enterprise Server? If so, what version?

No response

@mathbunnyru mathbunnyru added the bug Something isn't working label Dec 14, 2023
@mathbunnyru
Copy link
Author

This only happened when I switched to v4 a few hours ago.

@AurevoirXavier
Copy link

AurevoirXavier commented Dec 15, 2023

Same here.

Alright, it's not a bug on my end. Perhaps others are experiencing the same issue.

The problem is due to some actions not updating their dependencies. I use the new version of upload, and consequently, using an older version of download will result in failure.

@IvanGithub-Professional

@mathbunnyru I had a very similar Issue created earlier about an artifact not being found. This is a little different because you are receiving a "Request Timeout" but maybe my solution will fix yours. The issue is not being consistent with your Upload & Download versions. I was uploading with version 3 and downloading with version 4. Mine was not considered a bug because it is documented as expected.

My soultion was this
Solution: Be consistent with the versions with your Upload & Download such as action/upload-artifact@v4 and actions/download-artifact@v4

@mathbunnyru
Copy link
Author

@mathbunnyru I had a very similar Issue created earlier about an artifact not being found. This is a little different because you are receiving a "Request Timeout" but maybe my solution will fix yours. The issue is not being consistent with your Upload & Download versions. I was uploading with version 3 and downloading with version 4. Mine was not considered a bug because it is documented as expected.

My soultion was this

Solution: Be consistent with the versions with your Upload & Download such as action/upload-artifact@v4 and actions/download-artifact@v4

Thank you. Unfortunately, I already use v4 in all uploads and downloads.

@submarines-and
Copy link

submarines-and commented Dec 15, 2023

Happens to us intermittently as well. Both actions are v4

Error: Unable to download artifact(s): Unable to download and extract artifact: Request timeout:

@Santas
Copy link

Santas commented Dec 15, 2023

After upgrading to v4 we saw similar issue

Error: Unable to download artifact(s): Unable to download and extract artifact: Unexpected HTTP response from blob storage: 503 The server is busy.

eiffel-fl added a commit to inspektor-gadget/inspektor-gadget that referenced this issue Dec 15, 2023
There is currently a bug with v4 of download-artifact and upload-artifact [1].
So, let's use v3 for both for the moment.

Signed-off-by: Francis Laniel <[email protected]>
[1]: actions/download-artifact#249 (comment)
@RickyDaMa
Copy link

Similar issue here, v3 works, v4 gives this error when trying to download a definitely-there and definitely-that-name artifact:

Unable to download artifact(s): Unable to download and extract artifact: Unexpected HTTP response from blob storage: 409 Public access is not permitted on this storage account.

Private repo that I can't share, sorry

@jamezp
Copy link

jamezp commented Dec 15, 2023

Just another "I'm seeing this too" https://github.com/resteasy/resteasy-microprofile/actions/runs/7224411814. The artifact is definitely there.

@cmeister2
Copy link

cmeister2 commented Dec 15, 2023

Ditto, after upgrading curl/curl-fuzzer from v3 to v4.

@JasonGross
Copy link

Another example: https://github.com/mit-plv/fiat-crypto/actions/runs/7226837418/job/19695450596?pr=1786#step:6:20 both upload and download are v4. Is the new backend very unstable or something?

@davidlj95
Copy link

Same here after upgrading to v4. Recent example: https://github.com/davidlj95/ngx/actions/runs/7242522151/job/19728111845

@baywet
Copy link

baywet commented Dec 18, 2023

Facing the same issue here.

After digging into this a little bit, it seems the code is actually in another repo

import artifactClient from '@actions/artifact'

https://github.com/actions/toolkit/blob/68f22927e727a60caff909aaaec1ab7267b39f75/packages/artifact/src/internal/download/download-artifact.ts#L101

https://github.com/actions/toolkit/blob/68f22927e727a60caff909aaaec1ab7267b39f75/packages/artifact/src/internal/download/download-artifact.ts#L40

The formatting of the innermost error lead me to think it's actually failing here

https://github.com/actions/toolkit/blob/68f22927e727a60caff909aaaec1ab7267b39f75/packages/http-client/src/index.ts#L535

What I'm not sure about is why would the time out occur before 3 minutes since:

It almost seems like the service storing the artifacts is disconnecting this client for some reason (partition getting hot? network congestion?... something else?) It might be caused because the server sends back a 408 and 408's are not being retried in the current setup.

https://github.com/actions/toolkit/blob/68f22927e727a60caff909aaaec1ab7267b39f75/packages/http-client/src/index.ts#L69

But this is hard to confirm without more detailed logs/access to telemetry.

I think it'd be beneficial if some of you could:

  1. Open an issue on the upstream repo to call for attention (actions/toolkit) on this issue.
  2. Cross-check my analysis and add some additional pointers to it.

(I've also reached out privately to some GitHub employees)

@mhemmings
Copy link

@vmjoseph I'm not sure this should be marked as closed, given the "fix" is a bit of a patch/temporary solution masking an underlying issue?

dubzzz added a commit to dubzzz/fast-check that referenced this issue Jan 14, 2024
* ⬆️ Upgrade actions/{download,upload}-artifact action to v3

This reverts commit e0e771b.

Applying suggestion: actions/download-artifact#249 (comment)

* Bump for scorecard too

* Bump download to latest

* Apply suggestions from code review
Desiki-high added a commit to Desiki-high/nydus that referenced this issue Jan 15, 2024
Since actions/download-artifact#249 are fixed,
we can use the v4 version.

Signed-off-by: Yadong Ding <[email protected]>
Desiki-high added a commit to Desiki-high/nydus that referenced this issue Jan 16, 2024
Since actions/download-artifact#249 are fixed,
we can use the v4 version.

Signed-off-by: Yadong Ding <[email protected]>
imeoer pushed a commit to dragonflyoss/nydus that referenced this issue Jan 17, 2024
Since actions/download-artifact#249 are fixed,
we can use the v4 version.

Signed-off-by: Yadong Ding <[email protected]>
renovate bot added a commit to simonknittel/sinister-incorporated that referenced this issue Jan 18, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/download-artifact](https://togithub.com/actions/download-artifact)
| action | patch | `v4.1.0` -> `v4.1.1` |

---

### Release Notes

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

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

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

- Fix transient request timeouts
[actions/download-artifact#249
-   Bump `@actions/artifacts` to latest version

</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/simonknittel/sinister-incorporated).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCJ9-->
flavorjones added a commit to sparklemotion/nokogiri that referenced this issue Feb 2, 2024
originally #3058 and #3059, but I reverted those commits because the
artifact infrastructure was [flaky][] when first released. It seems
more stable now, so trying again.

- [flaky] actions/download-artifact#249
flavorjones added a commit to sparklemotion/nokogiri that referenced this issue Feb 3, 2024
originally #3058 and #3059, but I reverted those commits because the
artifact infrastructure was [flaky][] when first released. It seems
more stable now, so trying again.

- [flaky] actions/download-artifact#249

(cherry picked from commit 78c48b1)
Racer159 added a commit to zarf-dev/zarf that referenced this issue Feb 7, 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 |
|---|---|---|---|---|---|---|---|
|
[@easyops-cn/docusaurus-search-local](https://togithub.com/easyops-cn/docusaurus-search-local)
| [`^0.38.0` ->
`^0.40.0`](https://renovatebot.com/diffs/npm/@easyops-cn%2fdocusaurus-search-local/0.38.1/0.40.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@easyops-cn%2fdocusaurus-search-local/0.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@easyops-cn%2fdocusaurus-search-local/0.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@easyops-cn%2fdocusaurus-search-local/0.38.1/0.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@easyops-cn%2fdocusaurus-search-local/0.38.1/0.40.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
|
[actions/download-artifact](https://togithub.com/actions/download-artifact)
| `v4.0.0` -> `v4.1.2` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fdownload-artifact/v4.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fdownload-artifact/v4.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fdownload-artifact/v4.0.0/v4.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fdownload-artifact/v4.0.0/v4.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| `v4.0.0` -> `v4.3.1` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fupload-artifact/v4.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fupload-artifact/v4.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fupload-artifact/v4.0.0/v4.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fupload-artifact/v4.0.0/v4.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |
| [anchore/sbom-action](https://togithub.com/anchore/sbom-action) |
`v0.15.1` -> `v0.15.8` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/anchore%2fsbom-action/v0.15.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/anchore%2fsbom-action/v0.15.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/anchore%2fsbom-action/v0.15.1/v0.15.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/anchore%2fsbom-action/v0.15.1/v0.15.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | patch |
| [argo-cd](https://togithub.com/argoproj/argo-helm) | `5.46.5` ->
`5.54.0` |
[![age](https://developer.mend.io/api/mc/badges/age/helm/argo-cd/5.54.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/helm/argo-cd/5.54.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/helm/argo-cd/5.46.5/5.54.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/helm/argo-cd/5.46.5/5.54.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [argocd-apps](https://togithub.com/argoproj/argo-helm) | `1.4.1` ->
`1.6.1` |
[![age](https://developer.mend.io/api/mc/badges/age/helm/argocd-apps/1.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/helm/argocd-apps/1.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/helm/argocd-apps/1.4.1/1.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/helm/argocd-apps/1.4.1/1.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [aws](https://registry.terraform.io/providers/hashicorp/aws)
([source](https://togithub.com/hashicorp/terraform-provider-aws)) | `~>
5.30.0` -> `~> 5.35.0` |
[![age](https://developer.mend.io/api/mc/badges/age/terraform-provider/aws/5.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/terraform-provider/aws/5.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/terraform-provider/aws/5.30.0/5.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/terraform-provider/aws/5.30.0/5.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| required_provider | minor |
| [big-bang/bigbang](https://repo1.dso.mil/big-bang/bigbang) | `2.16.0`
-> `2.19.2` |
[![age](https://developer.mend.io/api/mc/badges/age/gitlab-releases/big-bang%2fbigbang/2.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/gitlab-releases/big-bang%2fbigbang/2.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/gitlab-releases/big-bang%2fbigbang/2.16.0/2.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/gitlab-releases/big-bang%2fbigbang/2.16.0/2.19.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
|
[ghcr.io/stefanprodan/podinfo](https://togithub.com/stefanprodan/podinfo)
| `6.4.0` -> `6.5.4` |
[![age](https://developer.mend.io/api/mc/badges/age/docker/ghcr.io%2fstefanprodan%2fpodinfo/6.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/docker/ghcr.io%2fstefanprodan%2fpodinfo/6.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/docker/ghcr.io%2fstefanprodan%2fpodinfo/6.4.0/6.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/ghcr.io%2fstefanprodan%2fpodinfo/6.4.0/6.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [gitea](https://gitea.com/gitea/helm-chart) | `10.0.0` -> `10.1.1` |
[![age](https://developer.mend.io/api/mc/badges/age/helm/gitea/10.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/helm/gitea/10.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/helm/gitea/10.0.0/10.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/helm/gitea/10.0.0/10.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
|
[github.com/anchore/stereoscope](https://togithub.com/anchore/stereoscope)
| `v0.0.0-20240118133533-eb656fc71793` -> `v0.0.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fanchore%2fstereoscope/v0.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fanchore%2fstereoscope/v0.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fanchore%2fstereoscope/v0.0.0-20240118133533-eb656fc71793/v0.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fanchore%2fstereoscope/v0.0.0-20240118133533-eb656fc71793/v0.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/anchore/syft](https://togithub.com/anchore/syft) |
`v0.99.0` -> `v0.103.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fanchore%2fsyft/v0.103.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fanchore%2fsyft/v0.103.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fanchore%2fsyft/v0.99.0/v0.103.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fanchore%2fsyft/v0.99.0/v0.103.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/derailed/k9s](https://togithub.com/derailed/k9s) |
`v0.29.1` -> `v0.31.7` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fderailed%2fk9s/v0.31.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fderailed%2fk9s/v0.31.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fderailed%2fk9s/v0.29.1/v0.31.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fderailed%2fk9s/v0.29.1/v0.31.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/docker/cli](https://togithub.com/docker/cli) |
`v24.0.7+incompatible` -> `v24.0.9+incompatible` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fdocker%2fcli/v24.0.9+incompatible?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fdocker%2fcli/v24.0.9+incompatible?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fdocker%2fcli/v24.0.7+incompatible/v24.0.9+incompatible?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fdocker%2fcli/v24.0.7+incompatible/v24.0.9+incompatible?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/fluxcd/helm-controller/api](https://togithub.com/fluxcd/helm-controller)
| `v0.36.2` -> `v0.37.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ffluxcd%2fhelm-controller%2fapi/v0.37.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ffluxcd%2fhelm-controller%2fapi/v0.37.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ffluxcd%2fhelm-controller%2fapi/v0.36.2/v0.37.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ffluxcd%2fhelm-controller%2fapi/v0.36.2/v0.37.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/fluxcd/source-controller/api](https://togithub.com/fluxcd/source-controller)
| `v1.2.1` -> `v1.2.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ffluxcd%2fsource-controller%2fapi/v1.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ffluxcd%2fsource-controller%2fapi/v1.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ffluxcd%2fsource-controller%2fapi/v1.2.1/v1.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ffluxcd%2fsource-controller%2fapi/v1.2.1/v1.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/go-logr/logr](https://togithub.com/go-logr/logr) |
`v1.3.0` -> `v1.4.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-logr%2flogr/v1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-logr%2flogr/v1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-logr%2flogr/v1.3.0/v1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-logr%2flogr/v1.3.0/v1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/goccy/go-yaml](https://togithub.com/goccy/go-yaml) |
`v1.11.2` -> `v1.11.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoccy%2fgo-yaml/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoccy%2fgo-yaml/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoccy%2fgo-yaml/v1.11.2/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoccy%2fgo-yaml/v1.11.2/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/google/go-containerregistry](https://togithub.com/google/go-containerregistry)
| `v0.17.0` -> `v0.19.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoogle%2fgo-containerregistry/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoogle%2fgo-containerregistry/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoogle%2fgo-containerregistry/v0.17.0/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoogle%2fgo-containerregistry/v0.17.0/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/opencontainers/image-spec](https://togithub.com/opencontainers/image-spec)
| `v1.1.0-rc5` -> `v1.1.0-rc6` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopencontainers%2fimage-spec/v1.1.0-rc6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopencontainers%2fimage-spec/v1.1.0-rc6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopencontainers%2fimage-spec/v1.1.0-rc5/v1.1.0-rc6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopencontainers%2fimage-spec/v1.1.0-rc5/v1.1.0-rc6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)
| `v1.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/pterm/pterm](https://togithub.com/pterm/pterm) |
`v0.12.71` -> `v0.12.78` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fpterm%2fpterm/v0.12.78?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fpterm%2fpterm/v0.12.78?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fpterm%2fpterm/v0.12.71/v0.12.78?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fpterm%2fpterm/v0.12.71/v0.12.78?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/sigstore/cosign/v2](https://togithub.com/sigstore/cosign)
| `v2.2.2` -> `v2.2.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsigstore%2fcosign%2fv2/v2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsigstore%2fcosign%2fv2/v2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsigstore%2fcosign%2fv2/v2.2.2/v2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsigstore%2fcosign%2fv2/v2.2.2/v2.2.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/sigstore/sigstore/pkg/signature/kms/aws](https://togithub.com/sigstore/sigstore)
| `v1.7.6` -> `v1.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2faws/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2faws/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2faws/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2faws/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/sigstore/sigstore/pkg/signature/kms/azure](https://togithub.com/sigstore/sigstore)
| `v1.7.6` -> `v1.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fazure/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fazure/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fazure/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fazure/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/sigstore/sigstore/pkg/signature/kms/gcp](https://togithub.com/sigstore/sigstore)
| `v1.7.6` -> `v1.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fgcp/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fgcp/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fgcp/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fgcp/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/sigstore/sigstore/pkg/signature/kms/hashivault](https://togithub.com/sigstore/sigstore)
| `v1.7.6` -> `v1.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fhashivault/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fhashivault/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fhashivault/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsigstore%2fsigstore%2fpkg%2fsignature%2fkms%2fhashivault/v1.7.6/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/spf13/viper](https://togithub.com/spf13/viper) | `v1.18.1`
-> `v1.18.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspf13%2fviper/v1.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspf13%2fviper/v1.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspf13%2fviper/v1.18.1/v1.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspf13%2fviper/v1.18.1/v1.18.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
`v3.22.12` -> `v3.24.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/github%2fcodeql-action/v3.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/github%2fcodeql-action/v3.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/github%2fcodeql-action/v3.22.12/v3.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/github%2fcodeql-action/v3.22.12/v3.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |
| [go](https://go.dev/) ([source](https://togithub.com/golang/go)) |
`1.21.5` -> `1.21.6` |
[![age](https://developer.mend.io/api/mc/badges/age/golang-version/go/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/golang-version/go/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/golang-version/go/1.21.5/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/golang-version/go/1.21.5/1.21.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| golang | patch |
| golang.org/x/crypto | `v0.17.0` -> `v0.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fcrypto/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fcrypto/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fcrypto/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fcrypto/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| golang.org/x/sync | `v0.5.0` -> `v0.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsync/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsync/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsync/v0.5.0/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsync/v0.5.0/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [helm.sh/helm/v3](https://togithub.com/helm/helm) | `v3.13.2` ->
`v3.14.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/helm.sh%2fhelm%2fv3/v3.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/helm.sh%2fhelm%2fv3/v3.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/helm.sh%2fhelm%2fv3/v3.13.2/v3.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/helm.sh%2fhelm%2fv3/v3.13.2/v3.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [k3s-io/k3s](https://togithub.com/k3s-io/k3s) | `v1.28.4+k3s2` ->
`v1.29.0+k3s1` |
[![age](https://developer.mend.io/api/mc/badges/age/github-releases/k3s-io%2fk3s/v1.29.0+k3s1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-releases/k3s-io%2fk3s/v1.29.0+k3s1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-releases/k3s-io%2fk3s/v1.28.4+k3s2/v1.29.0+k3s1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/k3s-io%2fk3s/v1.28.4+k3s2/v1.29.0+k3s1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [k8s.io/api](https://togithub.com/kubernetes/api) | `v0.28.4` ->
`v0.29.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fapi/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fapi/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fapi/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fapi/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [k8s.io/apimachinery](https://togithub.com/kubernetes/apimachinery) |
`v0.28.4` -> `v0.29.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fapimachinery/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fapimachinery/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fapimachinery/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fapimachinery/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [k8s.io/client-go](https://togithub.com/kubernetes/client-go) |
`v0.28.4` -> `v0.29.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fclient-go/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fclient-go/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fclient-go/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fclient-go/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[k8s.io/component-base](https://togithub.com/kubernetes/component-base)
| `v0.28.4` -> `v0.29.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fcomponent-base/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fcomponent-base/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fcomponent-base/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fcomponent-base/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [k8s.io/klog/v2](https://togithub.com/kubernetes/klog) | `v2.110.1` ->
`v2.120.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fklog%2fv2/v2.120.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fklog%2fv2/v2.120.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fklog%2fv2/v2.110.1/v2.120.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fklog%2fv2/v2.110.1/v2.120.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [k8s.io/kubectl](https://togithub.com/kubernetes/kubectl) | `v0.28.4`
-> `v0.29.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fkubectl/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fkubectl/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fkubectl/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fkubectl/v0.28.4/v0.29.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [loki-stack](https://grafana.com/loki)
([source](https://togithub.com/grafana/helm-charts)) | `2.9.11` ->
`2.10.1` |
[![age](https://developer.mend.io/api/mc/badges/age/helm/loki-stack/2.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/helm/loki-stack/2.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/helm/loki-stack/2.9.11/2.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/helm/loki-stack/2.9.11/2.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [longhorn](https://togithub.com/longhorn/longhorn)
([source](https://togithub.com/longhorn/charts)) | `1.4.0` -> `1.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/helm/longhorn/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/helm/longhorn/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/helm/longhorn/1.4.0/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/helm/longhorn/1.4.0/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| oras.land/oras-go/v2 | `v2.3.1` -> `v2.4.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/oras.land%2foras-go%2fv2/v2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/oras.land%2foras-go%2fv2/v2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/oras.land%2foras-go%2fv2/v2.3.1/v2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/oras.land%2foras-go%2fv2/v2.3.1/v2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[prism-react-renderer](https://togithub.com/FormidableLabs/prism-react-renderer)
| [`2.3.0` ->
`2.3.1`](https://renovatebot.com/diffs/npm/prism-react-renderer/2.3.0/2.3.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/prism-react-renderer/2.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prism-react-renderer/2.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prism-react-renderer/2.3.0/2.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prism-react-renderer/2.3.0/2.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [serde_json](https://togithub.com/serde-rs/json) | `1.0.108` ->
`1.0.113` |
[![age](https://developer.mend.io/api/mc/badges/age/crate/serde_json/1.0.113?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/crate/serde_json/1.0.113?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/crate/serde_json/1.0.108/1.0.113?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/crate/serde_json/1.0.108/1.0.113?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
|
[sigstore/cosign-installer](https://togithub.com/sigstore/cosign-installer)
| `v3.3.0` -> `v3.4.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/sigstore%2fcosign-installer/v3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/sigstore%2fcosign-installer/v3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/sigstore%2fcosign-installer/v3.3.0/v3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/sigstore%2fcosign-installer/v3.3.0/v3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |
|
[slackapi/slack-github-action](https://togithub.com/slackapi/slack-github-action)
| `v1.24.0` -> `v1.25.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/slackapi%2fslack-github-action/v1.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/slackapi%2fslack-github-action/v1.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/slackapi%2fslack-github-action/v1.24.0/v1.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/slackapi%2fslack-github-action/v1.24.0/v1.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| action | minor |
| [weaveworks/eksctl](https://togithub.com/weaveworks/eksctl) |
`v0.165.0` -> `v0.170.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-releases/weaveworks%2feksctl/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-releases/weaveworks%2feksctl/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-releases/weaveworks%2feksctl/v0.165.0/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-releases/weaveworks%2feksctl/v0.165.0/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |

---

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

---

### Release Notes

<details>
<summary>easyops-cn/docusaurus-search-local
(@&#8203;easyops-cn/docusaurus-search-local)</summary>

###
[`v0.40.1`](https://togithub.com/easyops-cn/docusaurus-search-local/releases/tag/v0.40.1)

[Compare
Source](https://togithub.com/easyops-cn/docusaurus-search-local/compare/v0.40.0...v0.40.1)

##### Bug Fixes

- fix search page no results, closes
[#&#8203;389](https://togithub.com/easyops-cn/docusaurus-search-local/issues/389)
([64e26c2](https://togithub.com/easyops-cn/docusaurus-search-local/commit/64e26c2bd9f20257e77089adf9dc697d353e5c0e))

###
[`v0.40.0`](https://togithub.com/easyops-cn/docusaurus-search-local/releases/tag/v0.40.0)

[Compare
Source](https://togithub.com/easyops-cn/docusaurus-search-local/compare/v0.39.0...v0.40.0)

##### Features

- allow force enable search index even if `noIndex: true` is set
([09d0f30](https://togithub.com/easyops-cn/docusaurus-search-local/commit/09d0f30c0700b72ed3699ef4918d0d6f245bf435)),
closes
[#&#8203;385](https://togithub.com/easyops-cn/docusaurus-search-local/issues/385)
- support i18n for search context labels
([83b05a2](https://togithub.com/easyops-cn/docusaurus-search-local/commit/83b05a2ea1b4553b8a95566003647e73de32011a))

###
[`v0.39.0`](https://togithub.com/easyops-cn/docusaurus-search-local/releases/tag/v0.39.0)

[Compare
Source](https://togithub.com/easyops-cn/docusaurus-search-local/compare/v0.38.1...v0.39.0)

##### Features

- customize search context labels
[#&#8203;382](https://togithub.com/easyops-cn/docusaurus-search-local/issues/382)
([f7df7bb](https://togithub.com/easyops-cn/docusaurus-search-local/commit/f7df7bb95b47140091f640103830e6c0356bb072))

</details>

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

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

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

- Bump
[@&#8203;actions/artifacts](https://togithub.com/actions/artifacts) to
latest version to include [updated GHES host
check](https://togithub.com/actions/toolkit/pull/1648)

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

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

- Fix transient request timeouts
[https://github.com/actions/download-artifact/issues/249](https://togithub.com/actions/download-artifact/issues/249)
-   Bump `@actions/artifacts` to latest version

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

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

#### What's Changed

- Some cleanup by [@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/download-artifact/pull/247](https://togithub.com/actions/download-artifact/pull/247)
- Fix default for run-id by [@&#8203;stchr](https://togithub.com/stchr)
in
[https://github.com/actions/download-artifact/pull/252](https://togithub.com/actions/download-artifact/pull/252)
- Support pattern matching to filter artifacts & merge to same directory
by [@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/download-artifact/pull/259](https://togithub.com/actions/download-artifact/pull/259)

#### New Contributors

- [@&#8203;stchr](https://togithub.com/stchr) made their first
contribution in
[https://github.com/actions/download-artifact/pull/252](https://togithub.com/actions/download-artifact/pull/252)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4...v4.1.0

</details>

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

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

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

- Bump
[@&#8203;actions/artifacts](https://togithub.com/actions/artifacts) to
latest version to include [updated GHES host
check](https://togithub.com/actions/toolkit/pull/1648)

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

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

##### What's Changed

- Reorganize upload code in prep for merge logic & add more tests by
[@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/upload-artifact/pull/504](https://togithub.com/actions/upload-artifact/pull/504)
- Add sub-action to merge artifacts by
[@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/upload-artifact/pull/505](https://togithub.com/actions/upload-artifact/pull/505)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.3.0

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

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

##### What's Changed

- Ability to overwrite an Artifact by
[@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/upload-artifact/pull/501](https://togithub.com/actions/upload-artifact/pull/501)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.2.0

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

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

#### What's Changed

- Add migrations docs by
[@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/upload-artifact/pull/482](https://togithub.com/actions/upload-artifact/pull/482)
- Update README.md by
[@&#8203;samuelwine](https://togithub.com/samuelwine) in
[https://github.com/actions/upload-artifact/pull/492](https://togithub.com/actions/upload-artifact/pull/492)
- Support artifact-url output by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[https://github.com/actions/upload-artifact/pull/496](https://togithub.com/actions/upload-artifact/pull/496)
- Update readme to reflect new 500 artifact per job limit by
[@&#8203;robherley](https://togithub.com/robherley) in
[https://github.com/actions/upload-artifact/pull/497](https://togithub.com/actions/upload-artifact/pull/497)

#### New Contributors

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

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.1.0

</details>

<details>
<summary>anchore/sbom-action (anchore/sbom-action)</summary>

###
[`v0.15.8`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.8)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.7...v0.15.8)

#### Changes in v0.15.8

- Update Syft to v0.103.1
([#&#8203;441](https://togithub.com/anchore/sbom-action/issues/441))
\[[anchore-actions-token-generator](https://togithub.com/anchore-actions-token-generator)]

###
[`v0.15.7`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.7)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.6...v0.15.7)

#### Changes in v0.15.7

- chore: migrate action to use node v20.11.0 (Iron) FROM node v16.x.x
([#&#8203;440](https://togithub.com/anchore/sbom-action/issues/440))
\[[spiffcs](https://togithub.com/spiffcs)]

###
[`v0.15.6`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.6)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.5...v0.15.6)

#### Changes in v0.15.6

- chore(deps): update Syft to v0.102.0
([#&#8203;438](https://togithub.com/anchore/sbom-action/issues/438))
\[[anchore-actions-token-generator](https://togithub.com/anchore-actions-token-generator)]

###
[`v0.15.5`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.5)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.4...v0.15.5)

#### Changes in v0.15.5

- chore(deps): update Syft to v0.101.1
([#&#8203;437](https://togithub.com/anchore/sbom-action/issues/437))
\[[anchore-actions-token-generator](https://togithub.com/anchore-actions-token-generator)]

###
[`v0.15.4`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.4)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.3...v0.15.4)

#### Changes in v0.15.4

- chore(deps): update Syft to v0.101.0
([#&#8203;436](https://togithub.com/anchore/sbom-action/issues/436))
\[[anchore-actions-token-generator](https://togithub.com/anchore-actions-token-generator)]

###
[`v0.15.3`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.3)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.2...v0.15.3)

#### Changes in v0.15.3

- chore(deps): update Syft to v0.100.0
([#&#8203;435](https://togithub.com/anchore/sbom-action/issues/435))
\[[anchore-actions-token-generator](https://togithub.com/anchore-actions-token-generator)]

###
[`v0.15.2`](https://togithub.com/anchore/sbom-action/releases/tag/v0.15.2)

[Compare
Source](https://togithub.com/anchore/sbom-action/compare/v0.15.1...v0.15.2)

#### Changes in v0.15.2

- chore(deps): update Syft to v0.99.0
([#&#8203;432](https://togithub.com/anchore/sbom-action/issues/432))
\[[anchore-actions-token-generator](https://togithub.com/anchore-actions-token-generator)]
- chore: fix github-script invocation in update-snapshots workflow
([#&#8203;433](https://togithub.com/anchore/sbom-action/issues/433))
\[[willmurphyscode](https://togithub.com/willmurphyscode)]

</details>

<details>
<summary>argoproj/argo-helm (argo-cd)</summary>

###
[`v5.54.0`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.54.0)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.14...argo-cd-5.54.0)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- feat(argo-cd): Add Probes for redis by
[@&#8203;Farfaday](https://togithub.com/Farfaday) in
[https://github.com/argoproj/argo-helm/pull/2400](https://togithub.com/argoproj/argo-helm/pull/2400)

#### New Contributors

- [@&#8203;Farfaday](https://togithub.com/Farfaday) made their first
contribution in
[https://github.com/argoproj/argo-helm/pull/2400](https://togithub.com/argoproj/argo-helm/pull/2400)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.14...argo-cd-5.54.0

###
[`v5.53.14`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.14)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.13...argo-cd-5.53.14)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(argo-cd): refresh from upstream by
[@&#8203;DrFaust92](https://togithub.com/DrFaust92) in
[https://github.com/argoproj/argo-helm/pull/2474](https://togithub.com/argoproj/argo-helm/pull/2474)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-workflows-0.40.10...argo-cd-5.53.14

###
[`v5.53.13`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.13)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.12...argo-cd-5.53.13)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(argo-cd): Update dependency argoproj/argo-cd to v2.9.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/argoproj/argo-helm/pull/2473](https://togithub.com/argoproj/argo-helm/pull/2473)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argocd-apps-1.6.1...argo-cd-5.53.13

###
[`v5.53.12`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.12)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.11...argo-cd-5.53.12)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

##### What's Changed

- fix(argo-cd): bump dex image version to fix cves by
[@&#8203;Boeller666](https://togithub.com/Boeller666) in
[https://github.com/argoproj/argo-helm/pull/2468](https://togithub.com/argoproj/argo-helm/pull/2468)

##### New Contributors

- [@&#8203;Boeller666](https://togithub.com/Boeller666) made their first
contribution in
[https://github.com/argoproj/argo-helm/pull/2468](https://togithub.com/argoproj/argo-helm/pull/2468)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.11...argo-cd-5.53.12

###
[`v5.53.11`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.11)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.10...argo-cd-5.53.11)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- feat(argo-cd): bump redis deps to fix cves by
[@&#8203;DrFaust92](https://togithub.com/DrFaust92) in
[https://github.com/argoproj/argo-helm/pull/2466](https://togithub.com/argoproj/argo-helm/pull/2466)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argocd-apps-1.6.0...argo-cd-5.53.11

###
[`v5.53.10`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.10)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.9...argo-cd-5.53.10)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(deps): bump actions/upload-artifact from 4.2.0 to 4.3.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/argoproj/argo-helm/pull/2457](https://togithub.com/argoproj/argo-helm/pull/2457)
- chore(deps): bump tj-actions/changed-files from 42.0.0 to 42.0.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/argoproj/argo-helm/pull/2458](https://togithub.com/argoproj/argo-helm/pull/2458)
- fix(argo-cd): Restart argocd-server when argocd-cm CM is updated by
[@&#8203;yu-croco](https://togithub.com/yu-croco) in
[https://github.com/argoproj/argo-helm/pull/2459](https://togithub.com/argoproj/argo-helm/pull/2459)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-workflows-0.40.9...argo-cd-5.53.10

###
[`v5.53.9`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.9)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.8...argo-cd-5.53.9)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- fix(argo-cd): Fix Repo server `serviceaccount` label template by
[@&#8203;ishuar](https://togithub.com/ishuar) in
[https://github.com/argoproj/argo-helm/pull/2454](https://togithub.com/argoproj/argo-helm/pull/2454)

#### New Contributors

- [@&#8203;ishuar](https://togithub.com/ishuar) made their first
contribution in
[https://github.com/argoproj/argo-helm/pull/2454](https://togithub.com/argoproj/argo-helm/pull/2454)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-rollouts-2.34.2...argo-cd-5.53.9

###
[`v5.53.8`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.8)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.7...argo-cd-5.53.8)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- docs(argo-cd): Update docs with the correct default for
application.instanceLabelKey by
[@&#8203;bodgit](https://togithub.com/bodgit) in
[https://github.com/argoproj/argo-helm/pull/2447](https://togithub.com/argoproj/argo-helm/pull/2447)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.7...argo-cd-5.53.8

###
[`v5.53.7`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.7)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.6...argo-cd-5.53.7)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(argo-cd): Change redis repository to public.ecr.aws by
[@&#8203;joaoestrela](https://togithub.com/joaoestrela) in
[https://github.com/argoproj/argo-helm/pull/2446](https://togithub.com/argoproj/argo-helm/pull/2446)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.6...argo-cd-5.53.7

###
[`v5.53.6`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.6)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.5...argo-cd-5.53.6)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(argo-cd): Provide Casbin matcher explicitly by
[@&#8203;yu-croco](https://togithub.com/yu-croco) in
[https://github.com/argoproj/argo-helm/pull/2445](https://togithub.com/argoproj/argo-helm/pull/2445)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.5...argo-cd-5.53.6

###
[`v5.53.5`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.5)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.4...argo-cd-5.53.5)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- fix(argo-cd): Fix fail to render `.Values.configs.secret.azureDevops`
by [@&#8203;yu-croco](https://togithub.com/yu-croco) in
[https://github.com/argoproj/argo-helm/pull/2443](https://togithub.com/argoproj/argo-helm/pull/2443)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.4...argo-cd-5.53.5

###
[`v5.53.4`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.4)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.3...argo-cd-5.53.4)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(deps): bump actions/upload-artifact from 4.1.0 to 4.2.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/argoproj/argo-helm/pull/2441](https://togithub.com/argoproj/argo-helm/pull/2441)
- chore(deps): bump tj-actions/changed-files from 41.0.1 to 42.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/argoproj/argo-helm/pull/2440](https://togithub.com/argoproj/argo-helm/pull/2440)
- feat(argo-cd): Support Azure DevOps webhook Secret by
[@&#8203;yu-croco](https://togithub.com/yu-croco) in
[https://github.com/argoproj/argo-helm/pull/2439](https://togithub.com/argoproj/argo-helm/pull/2439)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.3...argo-cd-5.53.4

###
[`v5.53.3`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.3)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.2...argo-cd-5.53.3)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- docs(argo-cd): Add reference for Argo CD extensions by
[@&#8203;yu-croco](https://togithub.com/yu-croco) in
[https://github.com/argoproj/argo-helm/pull/2438](https://togithub.com/argoproj/argo-helm/pull/2438)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.2...argo-cd-5.53.3

###
[`v5.53.2`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.2)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.1...argo-cd-5.53.2)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(argo-cd): Update dependency argoproj/argo-cd to v2.9.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/argoproj/argo-helm/pull/2436](https://togithub.com/argoproj/argo-helm/pull/2436)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.1...argo-cd-5.53.2

###
[`v5.53.1`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.1)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-5.53.0...argo-cd-5.53.1)

A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool
for Kubernetes.

#### What's Changed

- chore(argo-cd): Update dependency argoproj/argo-cd to v2.9.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/argoproj/argo-helm/pull/2434](https://togithub.com/argoproj/argo-helm/pull/2434)

**Full Changelog**:
https://github.com/argoproj/argo-helm/compare/argo-cd-5.53.0...argo-cd-5.53.1

###
[`v5.53.0`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-5.53.0)

[Compare
Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-

</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/zarf).

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Wayne Starr <[email protected]>
yolanv pushed a commit to Ordina-Group/JWorks-blog that referenced this issue Feb 12, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/download-artifact](https://togithub.com/actions/download-artifact)
| action | minor | `v4` -> `v4.1.2` |

---

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

---

### Release Notes

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

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

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

- Bump
[@&#8203;actions/artifacts](https://togithub.com/actions/artifacts) to
latest version to include [updated GHES host
check](https://togithub.com/actions/toolkit/pull/1648)

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

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

- Fix transient request timeouts
[actions/download-artifact#249
-   Bump `@actions/artifacts` to latest version

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

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

#### What's Changed

- Some cleanup by [@&#8203;robherley](https://togithub.com/robherley) in
[actions/download-artifact#247
- Fix default for run-id by [@&#8203;stchr](https://togithub.com/stchr)
in
[actions/download-artifact#252
- Support pattern matching to filter artifacts & merge to same directory
by [@&#8203;robherley](https://togithub.com/robherley) in
[actions/download-artifact#259

#### New Contributors

- [@&#8203;stchr](https://togithub.com/stchr) made their first
contribution in
[actions/download-artifact#252

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am
every weekday,every weekend" in timezone Europe/Brussels, 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/Ordina-Group/ordina-jworks.github.io).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@jeroen
Copy link

jeroen commented Feb 20, 2024

This is still flaky, after bumping to v4 getting lots of failures again: https://github.com/r-universe/tiledb-inc/actions/runs/7978856468/job/21785898976

laurentsimon pushed a commit to slsa-framework/slsa-verifier that referenced this issue Apr 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) | action |
major | `v3.6.0` -> `v4.1.1` |
|
[actions/dependency-review-action](https://togithub.com/actions/dependency-review-action)
| action | major | `v3.1.5` -> `v4.2.5` |
|
[actions/download-artifact](https://togithub.com/actions/download-artifact)
| action | major | `v3.0.2` -> `v4.1.4` |
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| major | `v3` -> `v4` |
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| major | `v3.8.2` -> `v4.0.2` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | major | `v3.1.3` -> `v4.3.1` |
| [github/codeql-action](https://togithub.com/github/codeql-action) |
action | major | `v2.24.8` -> `v3.24.9` |
|
[golangci/golangci-lint-action](https://togithub.com/golangci/golangci-lint-action)
| action | major | `v3` -> `v4` |

---

> [!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.1`](https://togithub.com/actions/checkout/releases/tag/v4.1.1)

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

##### What's Changed

- Update CODEOWNERS to Launch team by
[@&#8203;joshmgross](https://togithub.com/joshmgross) in
[actions/checkout#1510
- Correct link to GitHub Docs by
[@&#8203;peterbe](https://togithub.com/peterbe) in
[actions/checkout#1511
- Link to release page from what's new section by
[@&#8203;cory-miller](https://togithub.com/cory-miller) in
[actions/checkout#1514

##### New Contributors

- [@&#8203;joshmgross](https://togithub.com/joshmgross) made their first
contribution in
[actions/checkout#1510
- [@&#8203;peterbe](https://togithub.com/peterbe) made their first
contribution in
[actions/checkout#1511

**Full Changelog**:
actions/checkout@v4.1.0...v4.1.1

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

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

- [Add support for partial checkout
filters](https://togithub.com/actions/checkout/pull/1396)

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

[Compare
Source](https://togithub.com/actions/checkout/compare/v3.6.0...v4.0.0)

- [Support fetching without the --progress
option](https://togithub.com/actions/checkout/pull/1067)
-   [Update to node20](https://togithub.com/actions/checkout/pull/1436)

</details>

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

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

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

#### What's Changed

- Fixed a bug where some configuration options in external files were
not being properly picked up --
[actions/dependency-review-action#722
-   Bump eslint from 8.56.0 to 8.57.0

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

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

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

#### What's Changed

Fixed a bug in the output of OpenSSF cards for GitHub Actions.

#### New Contributors

- [@&#8203;sporkmonger](https://togithub.com/sporkmonger) made their
first contribution in
[actions/dependency-review-action#721

**Full Changelog**:
actions/dependency-review-action@v4.2.3...v4.2.4

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

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

#### What's Changed

- Set comment as output by [@&#8203;jsoref](https://togithub.com/jsoref)
in
[actions/dependency-review-action#698
- Add support for calculating OpenSSF Scorecards by
[@&#8203;jhutchings1](https://togithub.com/jhutchings1) in
[actions/dependency-review-action#709
- Add outputs for the changes data by
[@&#8203;laughedelic](https://togithub.com/laughedelic) in
[actions/dependency-review-action#707

#### New Contributors

- [@&#8203;jhutchings1](https://togithub.com/jhutchings1) made their
first contribution in
[actions/dependency-review-action#709
- [@&#8203;laughedelic](https://togithub.com/laughedelic) made their
first contribution in
[actions/dependency-review-action#707

**Full Changelog**:
actions/dependency-review-action@v4.1.3...v4.2.3

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

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

Fixes a bug in 4.1.2 that would introduce comments in every pull
request, regardless of the user's configuration (see
[actions/dependency-review-action#697).

**Full Changelog**:
actions/dependency-review-action@v4.1.2...v4.1.3

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

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

#### What's Changed

- Expose dependency comment content by
[@&#8203;jsoref](https://togithub.com/jsoref) in
[actions/dependency-review-action#696

**Full Changelog**:
actions/dependency-review-action@v4.1.1...v4.1.2

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

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

#### What's Changed

- Bump `undici` to fix
[GHSA-wqq4-5wpv-mx2g](https://togithub.com/nodejs/undici/security/advisories/GHSA-wqq4-5wpv-mx2g)
- 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
[actions/dependency-review-action#693

**Full Changelog**:
actions/dependency-review-action@v4.1.0...v4.1.1

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

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

#### What's Changed

- Add `warn-only` by [@&#8203;tgrall](https://togithub.com/tgrall) in
[actions/dependency-review-action#432

Added a new configuration option (`warn-only`, boolean) that makes the
action always succeed while still displaying found vulnerabilities in
the log.

- Create stale.yaml by
[@&#8203;jonjanego](https://togithub.com/jonjanego) in
[actions/dependency-review-action#671
- Use manual codeql config by
[@&#8203;juxtin](https://togithub.com/juxtin) in
[actions/dependency-review-action#678
- Multiple dependency updates (see the changelog below for more
information)

#### New Contributors

- [@&#8203;jonjanego](https://togithub.com/jonjanego) made their first
contribution in
[actions/dependency-review-action#671
- [@&#8203;tgrall](https://togithub.com/tgrall) made their first
contribution in
[actions/dependency-review-action#432

**Full Changelog**:
actions/dependency-review-action@v4...v4.1.0

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

[Compare
Source](https://togithub.com/actions/dependency-review-action/compare/v3.1.5...v4.0.0)

- Update action to Node 20 by
[@&#8203;takost](https://togithub.com/takost) in
[actions/dependency-review-action#639
-   Dependabot updates, see the full changelog for more details.

#### New Contributors

- [@&#8203;takost](https://togithub.com/takost) made their first
contribution in
[actions/dependency-review-action#639

**Full Changelog**:
actions/dependency-review-action@v3.1.5...v4.0.0

</details>

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

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

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

##### What's Changed

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

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

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

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

##### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/download-artifact#292
- Update toolkit dependency with updated unzip logic by
[@&#8203;bethanyj28](https://togithub.com/bethanyj28) in
[actions/download-artifact#299
- Update
[@&#8203;actions/artifact](https://togithub.com/actions/artifact) by
[@&#8203;bethanyj28](https://togithub.com/bethanyj28) in
[actions/download-artifact#303

##### New Contributors

- [@&#8203;bethanyj28](https://togithub.com/bethanyj28) made their first
contribution in
[actions/download-artifact#299

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

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

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

- Bump
[@&#8203;actions/artifacts](https://togithub.com/actions/artifacts) to
latest version to include [updated GHES host
check](https://togithub.com/actions/toolkit/pull/1648)

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

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

- Fix transient request timeouts
[actions/download-artifact#249
-   Bump `@actions/artifacts` to latest version

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

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

#### What's Changed

- Some cleanup by [@&#8203;robherley](https://togithub.com/robherley) in
[actions/download-artifact#247
- Fix default for run-id by [@&#8203;stchr](https://togithub.com/stchr)
in
[actions/download-artifact#252
- Support pattern matching to filter artifacts & merge to same directory
by [@&#8203;robherley](https://togithub.com/robherley) in
[actions/download-artifact#259

#### New Contributors

- [@&#8203;stchr](https://togithub.com/stchr) made their first
contribution in
[actions/download-artifact#252

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

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

[Compare
Source](https://togithub.com/actions/download-artifact/compare/v3.0.2...v4.0.0)

#### What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major
changes to the backend architecture of Artifacts. They have numerous
performance and behavioral improvements.

ℹ️ However, this is a major update that includes breaking changes.
Artifacts created with versions v3 and below are not compatible with the
v4 actions. Uploads and downloads *must* use the same major actions
versions. There are also key differences from previous versions that may
require updates to your workflows.

For more information, please see:

1. The
[changelog](https://github.blog/changelog/2023-12-14-github-actions-artifacts-v4-is-now-generally-available/)
post.
2. The
[README](https://togithub.com/actions/download-artifact/blob/main/README.md).
3. The [migration
documentation](https://togithub.com/actions/upload-artifact/blob/main/docs/MIGRATION.md).
4. As well as the underlying npm package,
[@&#8203;actions/artifact](https://togithub.com/actions/toolkit/tree/main/packages/artifact)
documentation.

#### New Contributors

- [@&#8203;bflad](https://togithub.com/bflad) made their first
contribution in
[actions/download-artifact#194

**Full Changelog**:
actions/download-artifact@v3...v4.0.0

</details>

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

### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v3...v4)

</details>

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

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

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

- Bump
[@&#8203;actions/artifacts](https://togithub.com/actions/artifacts) to
latest version to include [updated GHES host
check](https://togithub.com/actions/toolkit/pull/1648)

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

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

##### What's Changed

- Reorganize upload code in prep for merge logic & add more tests by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#504
- Add sub-action to merge artifacts by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#505

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

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

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

##### What's Changed

- Ability to overwrite an Artifact by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#501

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

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

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

#### What's Changed

- Add migrations docs by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#482
- Update README.md by
[@&#8203;samuelwine](https://togithub.com/samuelwine) in
[actions/upload-artifact#492
- Support artifact-url output by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#496
- Update readme to reflect new 500 artifact per job limit by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#497

#### New Contributors

- [@&#8203;samuelwine](https://togithub.com/samuelwine) made their first
contribution in
[actions/upload-artifact#492

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

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

[Compare
Source](https://togithub.com/actions/upload-artifact/compare/v3.1.3...v4.0.0)

#### What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major
changes to the backend architecture of Artifacts. They have numerous
performance and behavioral improvements.

For more information, see the
[@&#8203;actions/artifact](https://togithub.com/actions/toolkit/tree/main/packages/artifact)
documentation.

#### New Contributors

- [@&#8203;vmjoseph](https://togithub.com/vmjoseph) made their first
contribution in
[actions/upload-artifact#464

**Full Changelog**:
actions/upload-artifact@v3...v4.0.0

</details>

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

###
[`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)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

</details>

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

###
[`v4`](https://togithub.com/golangci/golangci-lint-action/compare/v3...v4)

[Compare
Source](https://togithub.com/golangci/golangci-lint-action/compare/v3...v4)

</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-verifier).

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

Signed-off-by: Mend Renovate <[email protected]>
@Garett-MacGowan
Copy link

This is still flaky, after bumping to v4 getting lots of failures again: https://github.com/r-universe/tiledb-inc/actions/runs/7978856468/job/21785898976

I noticed that your failure is not related to a timeout.

Can someone confirm whether the timeout issue is fixed?

@dannyskoog
Copy link

This is still flaky, after bumping to v4 getting lots of failures again: https://github.com/r-universe/tiledb-inc/actions/runs/7978856468/job/21785898976

I noticed that your failure is not related to a timeout.

Can someone confirm whether the timeout issue is fixed?

Since the fix was released ~3 months ago I haven't faced the timeout issue again, using v4. Also, the lack of activity in here implies that it was indeed fixed across the board IMHO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.