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

v0.21.0: kind container makes changes to binfmt configutation #3510

Closed
f84anton opened this issue Feb 8, 2024 · 11 comments
Closed

v0.21.0: kind container makes changes to binfmt configutation #3510

f84anton opened this issue Feb 8, 2024 · 11 comments
Assignees
Labels
kind/bug Categorizes issue or PR as related to a bug. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. triage/accepted Indicates an issue or PR is ready to be actively worked on.
Milestone

Comments

@f84anton
Copy link

f84anton commented Feb 8, 2024

What happened:
I'm using orbstack on macbook m1, upgraded to kind 0.21.0 and created a new cluster with k8s 1.23, image kindest/node:v1.23.17@sha256:fbb92ac580fce498473762419df27fa8664dbaa1c5a361b5957e123b4035bdcf
After that I've got problem with running amd64 images in docker or inside kind:

WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
exec /service: exec format error

config file:

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
featureGates:
  TTLAfterFinished: true
containerdConfigPatches:
- |-
  [plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:5000"]
    endpoint = ["http://kind-registry:5000"]
  [plugins."io.containerd.grpc.v1.cri".registry.mirrors."kind-registry:5000"]
    endpoint = ["http://kind-registry:5000"]
kubeadmConfigPatches:
- |
  apiVersion: kubelet.config.k8s.io/v1beta1
  kind: KubeletConfiguration
  evictionHard:
    nodefs.available: "1%"
    imagefs.available: "1%"
    nodefs.inodesFree: "1%"
    memory.available: "50Mi"
  imageMinimumGCAge: "1h"
  imageGCHighThresholdPercent: 90
  imageGCLowThresholdPercent: 85
  allowedUnsafeSysctls:
  - "net.*"
nodes:
- role: control-plane
  extraPortMappings:
  - containerPort: 30080
    hostPort: 80
  - containerPort: 30443
    hostPort: 443

Here is how I created a cluster:

kind create cluster \
 --name kind \
 --image  "kindest/node:v1.23.17@sha256:fbb92ac580fce498473762419df27fa8664dbaa1c5a361b5957e123b4035bdcf"\
 --config /path/to/config \
 --wait 5m`

Here is binfmt info after kind container was created:

%  docker run --privileged --rm tonistiigi/binfmt
{
  "supported": [
    "linux/arm64"
  ],
  "emulators": [
    "python3.11"
  ]
}

After kind cluster delete and orbstack restart I see that the list goes back to normal:

%  docker run --privileged --rm tonistiigi/binfmt
{
  "supported": [
    "linux/arm64",
    "linux/amd64",
    "linux/riscv64",
    "linux/ppc64le",
    "linux/s390x",
    "linux/386",
    "linux/mips64le",
    "linux/arm/v7",
    "linux/arm/v6"
  ],
  "emulators": [
    "mac-macho-arm64",
    "mac-macho-x86_64",
    "mac-universal-arm64",
    "mac-universal-x86_64",
    "qemu-arm",
    "qemu-i386",
    "qemu-mips64el",
    "qemu-ppc64le",
    "qemu-riscv64",
    "qemu-s390x",
    "qemu-x86_64",
    "rosetta",
    "rosetta",
    "rosetta"
  ]
}

I had to roll back to 0.20.0, there is no issue with this version and k8s image kindest/node:v1.23.17@sha256:59c989ff8a517a93127d4a536e7014d28e235fb3529d9fba91b3951d461edfdb

What you expected to happen:
I've expected that I will not loose ability to run amd64 images.

How to reproduce it (as minimally and precisely as possible):
Create kind cluster with v0.21.0 on macbook m1 with orbstack.

Anything else we need to know?:
there is a similar issue for minikube kubernetes/minikube#17700

Environment:

  • kind version: (use kind version): kind v0.21.0 go1.20.13 darwin/arm64
  • Runtime info: (use docker info or podman info):
% docker info
Client:
 Version:    25.0.2
 Context:    orbstack
 Debug Mode: false
 Plugins:
  buildx: Docker Buildx (Docker Inc.)
    Version:  v0.12.1
    Path:     /Users/antonfaizrakhmanov/.docker/cli-plugins/docker-buildx
  compose: Docker Compose (Docker Inc.)
    Version:  v2.23.3
    Path:     /Users/antonfaizrakhmanov/.docker/cli-plugins/docker-compose
  sbom: View the packaged-based Software Bill Of Materials (SBOM) for an image (Anchore Inc.)
    Version:  0.6.0
    Path:     /usr/local/lib/docker/cli-plugins/docker-sbom
  scan: Docker Scan (Docker Inc.)
    Version:  v0.17.0
    Path:     /usr/local/lib/docker/cli-plugins/docker-scan

Server:
 Containers: 1
  Running: 1
  Paused: 0
  Stopped: 0
 Images: 13
 Server Version: 25.0.2
 Storage Driver: overlay2
  Backing Filesystem: btrfs
  Supports d_type: true
  Using metacopy: false
  Native Overlay Diff: true
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 8c087663b0233f6e6e2f4515cee61d49f14746a8
 runc version: 82f18fe0e44a59034f3e1f45e475fa5636e539aa
 init version: de40ad0
 Security Options:
  seccomp
   Profile: builtin
  cgroupns
 Kernel Version: 6.5.13-orbstack-00122-g57b8027e2387
 Operating System: OrbStack
 OSType: linux
 Architecture: aarch64
 CPUs: 8
 Total Memory: 2.513GiB
 Name: orbstack
 ID: 70e419d6-93c9-4b9a-bb82-5507a43455ef
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false
 Product License: Community Engine
 Default Address Pools:
   Base: 192.168.215.0/24, Size: 24
  • OS (e.g. from /etc/os-release): macos 14.2.1 (23C71) MacBook Air M1 2020
  • Kubernetes version: (use kubectl version):
% kubectl version
Client Version: version.Info{Major:"1", Minor:"23", GitVersion:"v1.23.5", GitCommit:"c285e781331a3785a7f436042c65c5641ce8a9e9", GitTreeState:"clean", BuildDate:"2022-03-16T15:51:05Z", GoVersion:"go1.17.8", Compiler:"gc", Platform:"darwin/arm64"}
Server Version: version.Info{Major:"1", Minor:"23", GitVersion:"v1.23.17", GitCommit:"953be8927218ec8067e1af2641e540238ffd7576", GitTreeState:"clean", BuildDate:"2023-06-15T02:24:51Z", GoVersion:"go1.19.6", Compiler:"gc", Platform:"linux/arm64"}
@f84anton f84anton added the kind/bug Categorizes issue or PR as related to a bug. label Feb 8, 2024
@afbjorklund
Copy link
Contributor

afbjorklund commented Feb 8, 2024

@BenTheElder
Copy link
Member

Thanks for the pointer @afbjorklund, that's a pretty annoying change.

Might look at disabling systemd-binfmt entirely, but just removing the python file should be an OK stopgap.

@BenTheElder BenTheElder added priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. triage/accepted Indicates an issue or PR is ready to be actively worked on. labels Feb 8, 2024
@BenTheElder
Copy link
Member

This test image has 1.23.17 with #3511 bentheelder/kind-node:zz-binfmt-test@sha256:a388d0f1ae8f894e77b6b80ad2bce7f3457f9acd29c90001dae7c9d9d6ffc564

@BenTheElder BenTheElder self-assigned this Feb 9, 2024
@aojea
Copy link
Contributor

aojea commented Feb 9, 2024

:/

@embik
Copy link
Member

embik commented Feb 9, 2024

This test image has 1.23.17 with #3511 bentheelder/kind-node:zz-binfmt-test@sha256:a388d0f1ae8f894e77b6b80ad2bce7f3457f9acd29c90001dae7c9d9d6ffc564

@xmudrii and I tested this image and it worked for us!

potiuk added a commit to potiuk/airflow that referenced this issue Feb 12, 2024
Kind 0.21 breaks running AMD images on ARM (MacOS M1/M2/M3)
See kubernetes-sigs/kind#3510
We should only upgrade if it is fixed
@BenTheElder
Copy link
Member

we'll move forward with that proposed fix and then release it + new images soonish, just sent the PR to the merge queue

@BenTheElder BenTheElder added this to the v0.22.0 milestone Feb 12, 2024
@potiuk
Copy link

potiuk commented Feb 12, 2024

Cool. We just experienced the same and tried to downgrade to kind 0.20 but it did not help. We have a workaround for now (k9s image does not work nicely but we can still use brew locally installed k9s) but it would be great to get it fixed .

@BenTheElder
Copy link
Member

Cool. We just experienced the same and tried to downgrade to kind 0.20 but it did not help. We have a workaround for now (k9s image does not work nicely but we can still use brew locally installed k9s) but it would be great to get it fixed .

You'd have to use an image from 0.20.0 release (including @sha256 digest to be sure), the change will be purely in the node image. (also those images should work with 0.21.0, but are old and may have other since-fixed issues).

I don't think 0.20.0 images had systemd-binfmt but haven't confirmed yet.

@BenTheElder BenTheElder changed the title kind container makes changes to binfmt configutation v0.21.0: kind container makes changes to binfmt configutation Feb 13, 2024
@BenTheElder BenTheElder pinned this issue Feb 13, 2024
@BenTheElder
Copy link
Member

The fix is merged, but Kubernetes has monthly patch releases slated for tomorrow, so it probably makes more sense to cut the kind release afterwards.

In the meantime, these images have the fix and would've been in a release today:

  • v1.29.1: kindest/node:v1.29.1@sha256:0c06baa545c3bb3fbd4828eb49b8b805f6788e18ce67bff34706ffa91866558b
  • v1.28.6: kindest/node:v1.28.6@sha256:e9e59d321795595d0eed0de48ef9fbda50388dc8bd4a9b23fb9bd869f370ec7e
  • v1.27.10: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476
  • v1.26.13: kindest/node:v1.26.13@sha256:8cb4239d64ff897e0c21ad19fe1d68c3422d4f3c1c1a734b7ab9ccc76c549605
  • v1.25.16: kindest/node:v1.25.16@sha256:e8b50f8e06b44bb65a93678a65a26248fae585b3d3c2a669e5ca6c90c69dc519
  • v1.24.17: kindest/node:v1.24.17@sha256:bad10f9b98d54586cba05a7eaa1b61c6b90bfc4ee174fdc43a7b75ca75c95e51
  • v1.23.17: kindest/node:v1.23.17@sha256:14d0a9a892b943866d7e6be119a06871291c517d279aedb816a4b4bc0ec0a5b3

@potiuk
Copy link

potiuk commented Feb 14, 2024

No worries - we can wait :) . Thanks for the quick fix !

@BenTheElder
Copy link
Member

https://github.com/kubernetes-sigs/kind/releases/tag/v0.22.0

aanm pushed a commit to aanm/cilium that referenced this issue Mar 7, 2024
GitHub Pull Request: https://github.com/aanm/cilium/pull/625

chore(deps): update all github action dependencies (v1.15)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://togithub.com/actions/cache) | action | patch | `v4.0.0` -> `v4.0.1` |
| [actions/download-artifact](https://togithub.com/actions/download-artifact) | action | patch | `v4.1.2` -> `v4.1.4` |
| [azure/login](https://togithub.com/azure/login) | action | minor | `v1.5.1` -> `v1.6.1` |
| cilium/scale-tests-action | action | digest | `8a522b9` -> `238d773` |
| [docker/setup-buildx-action](https://togithub.com/docker/setup-buildx-action) | action | minor | `v3.0.0` -> `v3.1.0` |
| [dorny/paths-filter](https://togithub.com/dorny/paths-filter) | action | major | `v2.11.1` -> `v3.0.2` |
| [eksctl-io/eksctl](https://togithub.com/eksctl-io/eksctl) |  | minor | `v0.165.0` -> `v0.173.0` |
| gcr.io/etcd-development/etcd |  | patch | `v3.5.11` -> `v3.5.12` |
| [google-github-actions/auth](https://togithub.com/google-github-actions/auth) | action | minor | `v2.0.1` -> `v2.1.2` |
| [google-github-actions/setup-gcloud](https://togithub.com/google-github-actions/setup-gcloud) | action | minor | `v2.0.1` -> `v2.1.0` |
| [helm/kind-action](https://togithub.com/helm/kind-action) | action | minor | `v1.8.0` -> `v1.9.0` |
| kindest/node |  | digest | `15ae92d` -> `8cb4239` |
| kindest/node |  | digest | `3700c81` -> `e6b2f72` |
| kindest/node |  | digest | `b7e1cf6` -> `e9e59d3` |
| [kubernetes-sigs/bom](https://togithub.com/kubernetes-sigs/bom) |  | minor | `v0.5.1` -> `v0.6.0` |
| [kubernetes-sigs/kind](https://togithub.com/kubernetes-sigs/kind) |  | minor | `v0.20.0` -> `v0.22.0` |
| [myrotvorets/set-commit-status-action](https://togithub.com/myrotvorets/set-commit-status-action) | action | patch | `v2.0.0` -> `v2.0.1` |
| [nick-invision/retry](https://togithub.com/nick-invision/retry) | action | major | `v2.9.0` -> `v3.0.0` |
| [sigstore/cosign-installer](https://togithub.com/sigstore/cosign-installer) | action | minor | `v3.2.0` -> `v3.4.0` |

---

### Release Notes

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

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

[Compare Source](https://togithub.com/actions/cache/compare/v4...v4.0.1)

##### What's Changed

-   Update README.md by [@&#8203;yacaovsnc](https://togithub.com/yacaovsnc) in [https://github.com/actions/cache/pull/1304](https://togithub.com/actions/cache/pull/1304)
-   Update examples by [@&#8203;yacaovsnc](https://togithub.com/yacaovsnc) in [https://github.com/actions/cache/pull/1305](https://togithub.com/actions/cache/pull/1305)
-   Update actions/cache publish flow by [@&#8203;bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/cache/pull/1340](https://togithub.com/actions/cache/pull/1340)
-   Update [@&#8203;actions/cache](https://togithub.com/actions/cache) by [@&#8203;bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/cache/pull/1341](https://togithub.com/actions/cache/pull/1341)

##### New Contributors

-   [@&#8203;yacaovsnc](https://togithub.com/yacaovsnc) made their first contribution in [https://github.com/actions/cache/pull/1304](https://togithub.com/actions/cache/pull/1304)

**Full Changelog**: https://github.com/actions/cache/compare/v4...v4.0.1

</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 [https://github.com/actions/download-artifact/pull/307](https://togithub.com/actions/download-artifact/pull/307)

**Full Changelog**: https://github.com/actions/download-artifact/compare/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 [https://github.com/actions/download-artifact/pull/292](https://togithub.com/actions/download-artifact/pull/292)
-   Update toolkit dependency with updated unzip logic by [@&#8203;bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/download-artifact/pull/299](https://togithub.com/actions/download-artifact/pull/299)
-   Update [@&#8203;actions/artifact](https://togithub.com/actions/artifact) by [@&#8203;bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/download-artifact/pull/303](https://togithub.com/actions/download-artifact/pull/303)

##### New Contributors

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

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

</details>

<details>
<summary>azure/login (azure/login)</summary>

### [`v1.6.1`](https://togithub.com/Azure/login/releases/tag/v1.6.1): Azure Login Action v1.6.1

[Compare Source](https://togithub.com/azure/login/compare/v1.6.0...v1.6.1)

-   Fix [#&#8203;403](https://togithub.com/azure/login/issues/403): Do not break the workflow if `az` is not installed in `pre` and `post` steps

### [`v1.6.0`](https://togithub.com/Azure/login/releases/tag/v1.6.0): Azure Login Action v1.6.0

[Compare Source](https://togithub.com/azure/login/compare/v1.5.1...v1.6.0)

-   Added `pre:` and `post:` action for cleaning up ([#&#8203;384](https://togithub.com/azure/login/issues/384))

</details>

<details>
<summary>docker/setup-buildx-action (docker/setup-buildx-action)</summary>

### [`v3.1.0`](https://togithub.com/docker/setup-buildx-action/compare/v3.0.0...v3.1.0)

[Compare Source](https://togithub.com/docker/setup-buildx-action/compare/v3.0.0...v3.1.0)

</details>

<details>
<summary>dorny/paths-filter (dorny/paths-filter)</summary>

### [`v3.0.2`](https://togithub.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v302)

[Compare Source](https://togithub.com/dorny/paths-filter/compare/v3.0.1...v3.0.2)

-   [Add config parameter for predicate quantifier](https://togithub.com/dorny/paths-filter/pull/224)

### [`v3.0.1`](https://togithub.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v301)

[Compare Source](https://togithub.com/dorny/paths-filter/compare/v3.0.0...v3.0.1)

-   [Compare base and ref when token is empty](https://togithub.com/dorny/paths-filter/pull/133)

### [`v3.0.0`](https://togithub.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v300)

[Compare Source](https://togithub.com/dorny/paths-filter/compare/v2.12.0...v3.0.0)

-   [Update to Node.js 20 ](https://togithub.com/dorny/paths-filter/pull/210)
-   [Update all dependencies](https://togithub.com/dorny/paths-filter/pull/215)

### [`v2.12.0`](https://togithub.com/dorny/paths-filter/compare/v2.11.1...v2.12.0)

[Compare Source](https://togithub.com/dorny/paths-filter/compare/v2.11.1...v2.12.0)

</details>

<details>
<summary>eksctl-io/eksctl (eksctl-io/eksctl)</summary>

### [`v0.173.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.173.0): eksctl 0.173.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.172.0-rc.0...0.173.0)

##### Release v0.173.0

##### 🚀 Features

-   Make EKS 1.29 default ([#&#8203;7599](https://togithub.com/eksctl-io/eksctl/issues/7599))

##### 🎯 Improvements

-   Add profile flag support for get and delete access entry ([#&#8203;7623](https://togithub.com/eksctl-io/eksctl/issues/7623))
-   Remove inline ELB and CloudWatch policies from Cluster Role ([#&#8203;7603](https://togithub.com/eksctl-io/eksctl/issues/7603))

##### 🐛 Bug Fixes

-   Increase STS session duration to fix caching credentials with assumed role MFA session ([#&#8203;7626](https://togithub.com/eksctl-io/eksctl/issues/7626))

##### 🧰 Maintenance

-   Automate PR with release notes draft ([#&#8203;7604](https://togithub.com/eksctl-io/eksctl/issues/7604))

##### 📝 Documentation

-   Update docs with Ubuntu 20.04 supported in EKS <= 1.29 ([#&#8203;7618](https://togithub.com/eksctl-io/eksctl/issues/7618))

##### Acknowledgments

The eksctl maintainers would like to sincerely thank [@&#8203;ibnjunaid](https://togithub.com/ibnjunaid), [@&#8203;rpocase](https://togithub.com/rpocase) and [@&#8203;vutny](https://togithub.com/vutny).

### [`v0.172.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.172.0): eksctl 0.172.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.171.0...0.172.0-rc.0)

##### Release v0.172.0

##### 🎯 Improvements

-   Fix checks for updated addon versions ([#&#8203;7471](https://togithub.com/eksctl-io/eksctl/issues/7471))
-   Check for empty region before invoking API in AWS SDK ([#&#8203;7523](https://togithub.com/eksctl-io/eksctl/issues/7523))

##### 🐛 Bug Fixes

-   Revert removing RetryMetricsHeader in presigned requests ([#&#8203;7563](https://togithub.com/eksctl-io/eksctl/issues/7563))

##### 🧰 Maintenance

-   Bump dependencies ([#&#8203;7554](https://togithub.com/eksctl-io/eksctl/issues/7554))
-   Extract common workflow steps to set up build environment ([#&#8203;7551](https://togithub.com/eksctl-io/eksctl/issues/7551))

##### Acknowledgments

The eksctl maintainers would like to sincerely thank:
[@&#8203;a2ush](https://togithub.com/a2ush) and [@&#8203;mttrb](https://togithub.com/mttrb)

### [`v0.171.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.171.0): eksctl 0.171.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.170.0...0.171.0)

##### Release v0.171.0

##### 🚀 Features

-   Add support for Ubuntu 22.04 based EKS images ([#&#8203;7516](https://togithub.com/eksctl-io/eksctl/issues/7516))

##### 📝 Documentation

-   Announce eksctl Support Status Update on eksctl.io ([#&#8203;7539](https://togithub.com/eksctl-io/eksctl/issues/7539))

##### Acknowledgments

The eksctl maintainers would like to sincerely thank:
[@&#8203;toabctl](https://togithub.com/toabctl)

### [`v0.170.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.170.0): eksctl 0.170.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.169.0...0.170.0)

##### Release v0.170.0

##### 🚀 Features

-   Add support for Access Entry type ([#&#8203;7522](https://togithub.com/eksctl-io/eksctl/issues/7522))

##### 🎯 Improvements

-   Skip draining managed nodegroups when deleting cluster ([#&#8203;7515](https://togithub.com/eksctl-io/eksctl/issues/7515))
-   Expand Karpenter settings.aws block to settings for v0.33.0 and greater ([#&#8203;7503](https://togithub.com/eksctl-io/eksctl/issues/7503))

##### 📝 Documentation

-   docs(fargate): eksctl update command is deprecated, use upgrade instead ([#&#8203;7517](https://togithub.com/eksctl-io/eksctl/issues/7517))

##### Acknowledgments

The eksctl maintainers would like to sincerely thank:
[@&#8203;skl](https://togithub.com/skl)

### [`v0.169.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.169.0): eksctl 0.169.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.168.0...0.169.0)

##### Release v0.169.0

##### 🚀 Features

-   Add support for EKS 1.29 ([#&#8203;7498](https://togithub.com/eksctl-io/eksctl/issues/7498))

##### 🎯 Improvements

-   Fix coredns pdb preventing cluster deletion in integration tests ([#&#8203;7496](https://togithub.com/eksctl-io/eksctl/issues/7496))
-   Update well-known policy for ebsCSIController ([#&#8203;7451](https://togithub.com/eksctl-io/eksctl/issues/7451))
-   Handle unordered public endpoint CIDRs from EKS in endpoint updates ([#&#8203;7483](https://togithub.com/eksctl-io/eksctl/issues/7483))

##### 🧰 Maintenance

-   Fix coredns pdb preventing cluster deletion in integration tests ([#&#8203;7496](https://togithub.com/eksctl-io/eksctl/issues/7496))

##### 📝 Documentation

-   Fix outdated links ([#&#8203;7297](https://togithub.com/eksctl-io/eksctl/issues/7297))

##### Acknowledgments

Weaveworks would like to sincerely thank:
[@&#8203;Emberwalker](https://togithub.com/Emberwalker), [@&#8203;guessi](https://togithub.com/guessi), and [@&#8203;teraflik](https://togithub.com/teraflik)

### [`v0.168.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.168.0): eksctl 0.168.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.167.0...0.168.0)

##### Release v0.168.0

##### 🎯 Improvements

-   Safely access/mutate fargate coredns pod annotations ([#&#8203;7480](https://togithub.com/eksctl-io/eksctl/issues/7480))

##### 🐛 Bug Fixes

-   Fix generating presigned URL for K8s authentication ([#&#8203;7487](https://togithub.com/eksctl-io/eksctl/issues/7487))
-   Ignore unsupported zone types when creating a zone mapping ([#&#8203;7204](https://togithub.com/eksctl-io/eksctl/issues/7204))

### [`v0.167.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.167.0): eksctl 0.167.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.166.0...0.167.0)

##### Release v0.167.0

##### 🚀 Features

-   Add support for EKS Access Entries ([#&#8203;7421](https://togithub.com/eksctl-io/eksctl/issues/7421), [#&#8203;7422](https://togithub.com/eksctl-io/eksctl/issues/7422), [#&#8203;7423](https://togithub.com/eksctl-io/eksctl/issues/7423))
-   Add support for ca-west-1 ([#&#8203;7419](https://togithub.com/eksctl-io/eksctl/issues/7419))

##### 🧰 Maintenance

-   Bump AWS dependencies, fix test ([#&#8203;7420](https://togithub.com/eksctl-io/eksctl/issues/7420))

### [`v0.166.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.166.0): eksctl 0.166.0 (permalink)

[Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.165.0...0.166.0)

##### Release v0.166.0

##### 🚀 Features

-   Add utils command to migrate to pod identity associations ([#&#8203;7343](https://togithub.com/eksctl-io/eksctl/issues/7343))

##### 🐛 Bug Fixes

-   Disable module caching in `actions/setup-go` ([#&#8203;7374](https://togithub.com/eksctl-io/eksctl/issues/7374))
-   Fix STS interface ([#&#8203;7345](https://togithub.com/eksctl-io/eksctl/issues/7345))
-   Fix build-integration-test for pod_identity_associations ([#&#8203;7336](https://togithub.com/eksctl-io/eksctl/issues/7336))

##### 🧰 Maintenance

-   Update build image tag and actions ([#&#8203;7337](https://togithub.com/eksctl-io/eksctl/issues/7337))

##### 📝 Documentation

-   Update reference for bottlerocket settings ([#&#8203;7375](https://togithub.com/eksctl-io/eksctl/issues/7375))
-   Documentation Update: Correct IAM Pod Identity Example Link ([#&#8203;7376](https://togithub.com/eksctl-io/eksctl/issues/7376))

##### Acknowledgments

Weaveworks would like to sincerely thank:
[@&#8203;chasestech](https://togithub.com/chasestech)

</details>

<details>
<summary>google-github-actions/auth (google-github-actions/auth)</summary>

### [`v2.1.2`](https://togithub.com/google-github-actions/auth/releases/tag/v2.1.2)

[Compare Source](https://togithub.com/google-github-actions/auth/compare/v2.1.1...v2.1.2)

##### What's Changed

-   Remove documentation on retries (deprecated) by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/392](https://togithub.com/google-github-actions/auth/pull/392)
-   Add security considerations for Attribute Conditions by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/393](https://togithub.com/google-github-actions/auth/pull/393)
-   security: bump undici from 5.28.2 to 5.28.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/google-github-actions/auth/pull/394](https://togithub.com/google-github-actions/auth/pull/394)
-   Reduce warnings to info level with a warning icon by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/397](https://togithub.com/google-github-actions/auth/pull/397)
-   Release: v2.1.2 by [@&#8203;google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/auth/pull/399](https://togithub.com/google-github-actions/auth/pull/399)

##### New Contributors

-   [@&#8203;dependabot](https://togithub.com/dependabot) made their first contribution in [https://github.com/google-github-actions/auth/pull/394](https://togithub.com/google-github-actions/auth/pull/394)

**Full Changelog**: https://github.com/google-github-actions/auth/compare/v2...v2.1.2

### [`v2.1.1`](https://togithub.com/google-github-actions/auth/releases/tag/v2.1.1)

[Compare Source](https://togithub.com/google-github-actions/auth/compare/v2.1.0...v2.1.1)

##### What's Changed

-   Remove retry logic by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/389](https://togithub.com/google-github-actions/auth/pull/389)
-   Use an OAuth 2.0 access token for Domain-Wide Delegation by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/388](https://togithub.com/google-github-actions/auth/pull/388)
-   Release: v2.1.1 by [@&#8203;google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/auth/pull/390](https://togithub.com/google-github-actions/auth/pull/390)

**Full Changelog**: https://github.com/google-github-actions/auth/compare/v2...v2.1.1

### [`v2.1.0`](https://togithub.com/google-github-actions/auth/releases/tag/v2.1.0)

[Compare Source](https://togithub.com/google-github-actions/auth/compare/v2.0.1...v2.1.0)

##### What's Changed

-   Update deps by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/384](https://togithub.com/google-github-actions/auth/pull/384)
-   Release: v2.1.0 by [@&#8203;google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/auth/pull/385](https://togithub.com/google-github-actions/auth/pull/385)

**Full Changelog**: https://github.com/google-github-actions/auth/compare/v2...v2.1.0

</details>

<details>
<summary>google-github-actions/setup-gcloud (google-github-actions/setup-gcloud)</summary>

### [`v2.1.0`](https://togithub.com/google-github-actions/setup-gcloud/releases/tag/v2.1.0)

[Compare Source](https://togithub.com/google-github-actions/setup-gcloud/compare/v2.0.1...v2.1.0)

##### What's Changed

-   Update deps by [@&#8203;sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/setup-gcloud/pull/677](https://togithub.com/google-github-actions/setup-gcloud/pull/677)
-   Release: v2.1.0 by [@&#8203;google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/setup-gcloud/pull/678](https://togithub.com/google-github-actions/setup-gcloud/pull/678)

**Full Changelog**: https://github.com/google-github-actions/setup-gcloud/compare/v2...v2.1.0

</details>

<details>
<summary>helm/kind-action (helm/kind-action)</summary>

### [`v1.9.0`](https://togithub.com/helm/kind-action/releases/tag/v1.9.0)

[Compare Source](https://togithub.com/helm/kind-action/compare/v1.8.0...v1.9.0)

#### What's Changed

-   Bump actions/checkout from 3.3.0 to 3.5.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/90](https://togithub.com/helm/kind-action/pull/90)
-   Bump actions/checkout from 3.5.3 to 3.6.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/96](https://togithub.com/helm/kind-action/pull/96)
-   Bump actions/checkout from 3.6.0 to 4.0.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/97](https://togithub.com/helm/kind-action/pull/97)
-   Bump actions/checkout from 4.0.0 to 4.1.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/98](https://togithub.com/helm/kind-action/pull/98)
-   Bump actions/checkout from 4.1.0 to 4.1.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/99](https://togithub.com/helm/kind-action/pull/99)
-   chore: Bump node version to node20 by [@&#8203;sayboras](https://togithub.com/sayboras) in [https://github.com/helm/kind-action/pull/102](https://togithub.com/helm/kind-action/pull/102)
-   Fix arch detection in non-Debian distros by [@&#8203;musse](https://togithub.com/musse) in [https://github.com/helm/kind-action/pull/93](https://togithub.com/helm/kind-action/pull/93)
-   docs: fix default version in action.yml by [@&#8203;dunglas](https://togithub.com/dunglas) in [https://github.com/helm/kind-action/pull/91](https://togithub.com/helm/kind-action/pull/91)
-   docs: bump outdated action version in README by [@&#8203;dunglas](https://togithub.com/dunglas) in [https://github.com/helm/kind-action/pull/92](https://togithub.com/helm/kind-action/pull/92)

#### New Contributors

-   [@&#8203;musse](https://togithub.com/musse) made their first contribution in [https://github.com/helm/kind-action/pull/93](https://togithub.com/helm/kind-action/pull/93)
-   [@&#8203;dunglas](https://togithub.com/dunglas) made their first contribution in [https://github.com/helm/kind-action/pull/91](https://togithub.com/helm/kind-action/pull/91)

**Full Changelog**: https://github.com/helm/kind-action/compare/v1.8.0...v1.9.0

</details>

<details>
<summary>kubernetes-sigs/bom (kubernetes-sigs/bom)</summary>

### [`v0.6.0`](https://togithub.com/kubernetes-sigs/bom/releases/tag/v0.6.0)

[Compare Source](https://togithub.com/kubernetes-sigs/bom/compare/v0.5.1...v0.6.0)

##### Changes by Kind

##### Feature

-   Add attestation in the release job ([#&#8203;271](https://togithub.com/kubernetes-sigs/bom/issues/271), [@&#8203;cpanato](https://togithub.com/cpanato))
-   Added support for scanning images with RPM package managers ([#&#8203;342](https://togithub.com/kubernetes-sigs/bom/issues/342), [@&#8203;micahhausler](https://togithub.com/micahhausler))
-   Bom now ships with the SPDX license list version v3.21 embedded. ([#&#8203;307](https://togithub.com/kubernetes-sigs/bom/issues/307), [@&#8203;puerco](https://togithub.com/puerco))
-   Improved the query help output, most importantly there is now help for the purl matcher
    -   New flag `--purl` to output purls instead of names
    -   The name matching filter now supports full regexes and not just substring matching
    -   New pluggable printer interface to output in more formats
    -   bom document query now can output in JSON and CSV in addition to the usual line printer using  `--format`
    -   New `--fields` flag controls which fields of the sbom will be printed on the query output
    -   Piped data on STDIN is now autodetected, you can now pipe an SBOM to `bom document query` and skip the filename ([#&#8203;291](https://togithub.com/kubernetes-sigs/bom/issues/291), [@&#8203;puerco](https://togithub.com/puerco))
-   OS Packages now can include an auto-generated download location. Initially supports Debian and Wolfi. ([#&#8203;270](https://togithub.com/kubernetes-sigs/bom/issues/270), [@&#8203;puerco](https://togithub.com/puerco))
-   The `bom` json parser now supports top-level elements specified with a `DESCRIBES` relationship to the document. `documentDescribes` is, of course, still suppoirted
    -   License printing in query results has better `NOASSERTION` detection when choosing which license to print. ([#&#8203;304](https://togithub.com/kubernetes-sigs/bom/issues/304), [@&#8203;puerco](https://togithub.com/puerco))
-   Update license-data to v3.22 ([#&#8203;357](https://togithub.com/kubernetes-sigs/bom/issues/357), [@&#8203;cpanato](https://togithub.com/cpanato))
-   `bom` now supports scanning OS packages from images based on distroless.
    -   Fixed a bug where `bom` would drop the last package read from the debian database
    -   Fixed an encoding bug in oci-typed purls where the version had an unescaped colon. ([#&#8203;345](https://togithub.com/kubernetes-sigs/bom/issues/345), [@&#8203;puerco](https://togithub.com/puerco))
-   `bom` will now autodetect when STDIN is open to outline an SBOM to avoid specifying it with a dash ([#&#8203;260](https://togithub.com/kubernetes-sigs/bom/issues/260), [@&#8203;puerco](https://togithub.com/puerco))

##### Bug or Regression

-   Bom will now read the SBOM until it detects the SBOM encoding data, enabling it to parse SBOMs with the document data defined at the end of the file.
    -   When trying to ingest a CycloneDX document, bom will now print a more useful warning ([#&#8203;259](https://togithub.com/kubernetes-sigs/bom/issues/259), [@&#8203;puerco](https://togithub.com/puerco))
-   Fixed a race condition where concurrent files canning processes could clash and cause a segfault (thanks to [@&#8203;howardjohn](https://togithub.com/howardjohn) for reporting) ([#&#8203;312](https://togithub.com/kubernetes-sigs/bom/issues/312), [@&#8203;puerco](https://togithub.com/puerco))
-   JSON-encoded files now include supplier and originator data. ([#&#8203;269](https://togithub.com/kubernetes-sigs/bom/issues/269), [@&#8203;puerco](https://togithub.com/puerco))

##### Other (Cleanup or Flake)

-   Go.mod: Update github.com/uwu-tools/magex to v0.10.0 ([#&#8203;275](https://togithub.com/kubernetes-sigs/bom/issues/275), [@&#8203;cpanato](https://togithub.com/cpanato))
-   SPDX packages representing container images are now named using their full reference and digest: `registry.com/repository/image@sha256:digest` ([#&#8203;289](https://togithub.com/kubernetes-sigs/bom/issues/289), [@&#8203;puerco](https://togithub.com/puerco))

##### Dependencies

##### Added

-   dario.cat/mergo: v1.0.0
-   github.com/MakeNowJust/heredoc/v2: [v2.0.1](https://togithub.com/MakeNowJust/heredoc/v2/tree/v2.0.1)
-   github.com/cyphar/filepath-securejoin: [v0.2.4](https://togithub.com/cyphar/filepath-securejoin/tree/v0.2.4)
-   github.com/dustin/go-humanize: [v1.0.1](https://togithub.com/dustin/go-humanize/tree/v1.0.1)
-   github.com/elazarl/goproxy: [2592e75](https://togithub.com/elazarl/goproxy/tree/2592e75)
-   github.com/glebarez/go-sqlite: [v1.22.0](https://togithub.com/glebarez/go-sqlite/tree/v1.22.0)
-   github.com/go-jose/go-jose/v3: [v3.0.0](https://togithub.com/go-jose/go-jose/v3/tree/v3.0.0)
-   github.com/golang/groupcache: [41bb18b](https://togithub.com/golang/groupcache/tree/41bb18b)
-   github.com/google/pprof: [e6195bd](https://togithub.com/google/pprof/tree/e6195bd)
-   github.com/hashicorp/errwrap: [v1.0.0](https://togithub.com/hashicorp/errwrap/tree/v1.0.0)
-   github.com/hashicorp/go-multierror: [v1.1.1](https://togithub.com/hashicorp/go-multierror/tree/v1.1.1)
-   github.com/kballard/go-shellquote: [95032a8](https://togithub.com/kballard/go-shellquote/tree/95032a8)
-   github.com/klauspost/cpuid/v2: [v2.2.3](https://togithub.com/klauspost/cpuid/v2/tree/v2.2.3)
-   github.com/knqyf263/go-rpmdb: [067d98b](https://togithub.com/knqyf263/go-rpmdb/tree/067d98b)
-   github.com/mattn/go-isatty: [v0.0.20](https://togithub.com/mattn/go-isatty/tree/v0.0.20)
-   github.com/mattn/go-sqlite3: [v1.14.16](https://togithub.com/mattn/go-sqlite3/tree/v1.14.16)
-   github.com/remyoudompheng/bigfft: [24d4a6f](https://togithub.com/remyoudompheng/bigfft/tree/24d4a6f)
-   github.com/uwu-tools/magex: [v0.10.0](https://togithub.com/uwu-tools/magex/tree/v0.10.0)
-   golang.org/x/exp: [`d852ddb`](https://togithub.com/kubernetes-sigs/bom/commit/d852ddb)
-   golang.org/x/tools/go/vcs: v0.1.0-deprecated
-   lukechampine.com/uint128: v1.3.0
-   modernc.org/cc/v3: v3.41.0
-   modernc.org/ccgo/v3: v3.16.15
-   modernc.org/httpfs: v1.0.6
-   modernc.org/libc: v1.37.6
-   modernc.org/mathutil: v1.6.0
-   modernc.org/memory: v1.7.2
-   modernc.org/opt: v0.1.3
-   modernc.org/sqlite: v1.28.0
-   modernc.org/strutil: v1.2.0
-   modernc.org/tcl: v1.15.2
-   modernc.org/token: v1.1.0
-   modernc.org/z: v1.7.3

##### Changed

-   cloud.google.com/go/compute: v1.18.0 → v1.19.3
-   github.com/BurntSushi/toml: [v0.3.1 → v1.2.1](https://togithub.com/BurntSushi/toml/compare/v0.3.1...v1.2.1)
-   github.com/Masterminds/semver/v3: [v3.1.1 → v3.2.1](https://togithub.com/Masterminds/semver/v3/compare/v3.1.1...v3.2.1)
-   github.com/Microsoft/go-winio: [v0.6.0 → v0.6.1](https://togithub.com/Microsoft/go-winio/compare/v0.6.0...v0.6.1)
-   github.com/ProtonMail/go-crypto: [7d5c6f0 → 3c4c8a2](https://togithub.com/ProtonMail/go-crypto/compare/7d5c6f0...3c4c8a2)
-   github.com/cloudflare/circl: [v1.1.0 → v1.3.3](https://togithub.com/cloudflare/circl/compare/v1.1.0...v1.3.3)
-   github.com/cpuguy83/go-md2man/v2: [v2.0.2 → v2.0.3](https://togithub.com/cpuguy83/go-md2man/v2/compare/v2.0.2...v2.0.3)
-   github.com/docker/cli: [v23.0.1+incompatible → v24.0.0+incompatible](https://togithub.com/docker/cli/compare/v23.0.1...v24.0.0)
-   github.com/docker/distribution: [v2.8.1+incompatible → v2.8.2+incompatible](https://togithub.com/docker/distribution/compare/v2.8.1...v2.8.2)
-   github.com/docker/docker: [v23.0.1+incompatible → v24.0.0+incompatible](https://togithub.com/docker/docker/compare/v23.0.1...v24.0.0)
-   github.com/go-git/gcfg: [v1.5.0 → 3a3c614](https://togithub.com/go-git/gcfg/compare/v1.5.0...3a3c614)
-   github.com/go-git/go-billy/v5: [v5.4.1 → v5.5.0](https://togithub.com/go-git/go-billy/v5/compare/v5.4.1...v5.5.0)
-   github.com/go-git/go-git-fixtures/v4: [v4.3.1 → 55a9409](https://togithub.com/go-git/go-git-fixtures/v4/compare/v4.3.1...55a9409)
-   github.com/go-git/go-git/v5: [v5.6.1 → v5.11.0](https://togithub.com/go-git/go-git/v5/compare/v5.6.1...v5.11.0)
-   github.com/google/go-cmp: [v0.5.9 → v0.6.0](https://togithub.com/google/go-cmp/compare/v0.5.9...v0.6.0)
-   github.com/google/go-containerregistry: [v0.14.0 → v0.17.0](https://togithub.com/google/go-containerregistry/compare/v0.14.0...v0.17.0)
-   github.com/google/uuid: [v1.3.0 → v1.5.0](https://togithub.com/google/uuid/compare/v1.3.0...v1.5.0)
-   github.com/in-toto/in-toto-golang: [v0.7.0 → v0.9.0](https://togithub.com/in-toto/in-toto-golang/compare/v0.7.0...v0.9.0)
-   github.com/klauspost/compress: [v1.16.0 → v1.16.5](https://togithub.com/klauspost/compress/compare/v1.16.0...v1.16.5)
-   github.com/kr/pretty: [v0.3.0 → v0.3.1](https://togithub.com/kr/pretty/compare/v0.3.0...v0.3.1)
-   github.com/magefile/mage: [v1.14.0 → v1.15.0](https://togithub.com/magefile/mage/compare/v1.14.0...v1.15.0)
-   github.com/maxbrunsfeld/counterfeiter/v6: [v6.6.1 → v6.8.1](https://togithub.com/maxbrunsfeld/counterfeiter/v6/compare/v6.6.1...v6.8.1)
-   github.com/moby/term: [3f7ff69 → v0.5.0](https://togithub.com/moby/term/compare/3f7ff69...v0.5.0)
-   github.com/onsi/gomega: [v1.26.0 → v1.30.0](https://togithub.com/onsi/gomega/compare/v1.26.0...v1.30.0)
-   github.com/opencontainers/image-spec: [v1.1.0-rc2 → v1.1.0-rc3](https://togithub.com/opencontainers/image-spec/compare/v1.1.0-rc2...v1.1.0-rc3)
-   github.com/package-url/packageurl-go: [d704593 → v0.1.2](https://togithub.com/package-url/packageurl-go/compare/d704593...v0.1.2)
-   github.com/rogpeppe/go-internal: [v1.8.1 → v1.11.0](https://togithub.com/rogpeppe/go-internal/compare/v1.8.1...v1.11.0)
-   github.com/secure-systems-lab/go-securesystemslib: [v0.5.0 → v0.6.0](https://togithub.com/secure-systems-lab/go-securesystemslib/compare/v0.5.0...v0.6.0)
-   github.com/sirupsen/logrus: [v1.9.0 → v1.9.3](https://togithub.com/sirupsen/logrus/compare/v1.9.0...v1.9.3)
-   github.com/skeema/knownhosts: [v1.1.0 → v1.2.1](https://togithub.com/skeema/knownhosts/compare/v1.1.0...v1.2.1)
-   github.com/spf13/cobra: [v1.6.1 → v1.8.0](https://togithub.com/spf13/cobra/compare/v1.6.1...v1.8.0)
-   github.com/spiffe/go-spiffe/v2: [v2.1.2 → v2.1.3](https://togithub.com/spiffe/go-spiffe/v2/compare/v2.1.2...v2.1.3)
-   github.com/stretchr/testify: [v1.8.2 → v1.8.4](https://togithub.com/stretchr/testify/compare/v1.8.2...v1.8.4)
-   github.com/urfave/cli: [v1.22.4 → v1.22.12](https://togithub.com/urfave/cli/compare/v1.22.4...v1.22.12)
-   github.com/vbatts/tar-split: [v0.11.2 → v0.11.3](https://togithub.com/vbatts/tar-split/compare/v0.11.2...v0.11.3)
-   gitlab.alpinelinux.org/alpine/go: v0.6.0 → v0.8.0
-   golang.org/x/crypto: v0.6.0 → v0.18.0
-   golang.org/x/mod: v0.9.0 → v0.14.0
-   golang.org/x/net: v0.8.0 → v0.20.0
-   golang.org/x/oauth2: v0.6.0 → v0.8.0
-   golang.org/x/sync: v0.1.0 → v0.6.0
-   golang.org/x/sys: v0.6.0 → v0.16.0
-   golang.org/x/term: v0.6.0 → v0.16.0
-   golang.org/x/text: v0.8.0 → v0.14.0
-   golang.org/x/tools: v0.7.0 → v0.17.0
-   golang.org/x/xerrors: [`5ec99f8`](https://togithub.com/kubernetes-sigs/bom/commit/5ec99f8) → [`104605a`](https://togithub.com/kubernetes-sigs/bom/commit/104605a)
-   google.golang.org/genproto: [`76db087`](https://togithub.com/kubernetes-sigs/bom/commit/76db087) → [`637eb22`](https://togithub.com/kubernetes-sigs/bom/commit/637eb22)
-   google.golang.org/grpc: v1.53.0 → v1.54.0
-   google.golang.org/protobuf: v1.29.0 → v1.30.0
-   mvdan.cc/sh/v3: v3.5.1 → v3.7.0
-   sigs.k8s.io/release-utils: [`2b998c6`](https://togithub.com/kubernetes-sigs/bom/commit/2b998c6) → v0.7.7

##### Removed

-   github.com/MakeNowJust/heredoc: [v1.0.0](https://togithub.com/MakeNowJust/heredoc/tree/v1.0.0)
-   github.com/acomagu/bufpipe: [v1.0.4](https://togithub.com/acomagu/bufpipe/tree/v1.0.4)
-   github.com/bwesterb/go-ristretto: [v1.2.0](https://togithub.com/bwesterb/go-ristretto/tree/v1.2.0)
-   github.com/carolynvs/magex: [v0.9.0](https://togithub.com/carolynvs/magex/tree/v0.9.0)
-   github.com/creack/pty: [v1.1.17](https://togithub.com/creack/pty/tree/v1.1.17)
-   github.com/frankban/quicktest: [v1.14.0](https://togithub.com/frankban/quicktest/tree/v1.14.0)
-   github.com/google/renameio: [v1.0.1](https://togithub.com/google/renameio/tree/v1.0.1)
-   github.com/imdario/mergo: [v0.3.13](https://togithub.com/imdario/mergo/tree/v0.3.13)
-   github.com/jessevdk/go-flags: [v1.5.0](https://togithub.com/jessevdk/go-flags/tree/v1.5.0)
-   github.com/matryer/is: [v1.2.0](https://togithub.com/matryer/is/tree/v1.2.0)
-   github.com/mmcloughlin/avo: [v0.5.0](https://togithub.com/mmcloughlin/avo/tree/v0.5.0)
-   github.com/niemeyer/pretty: [a10e7ca](https://togithub.com/niemeyer/pretty/tree/a10e7ca)
-   github.com/pkg/diff: [20ebb0f](https://togithub.com/pkg/diff/tree/20ebb0f)
-   github.com/shurcooL/sanitized_anchor_name: [v1.0.0](https://togithub.com/shurcooL/sanitized_anchor_name/tree/v1.0.0)
-   golang.org/x/arch: v0.1.0
-   gopkg.in/errgo.v2: v2.1.0
-   gopkg.in/square/go-jose.v2: v2.6.0
-   mvdan.cc/editorconfig: v0.2.0
-   rsc.io/pdf: v0.1.1

</details>

<details>
<summary>kubernetes-sigs/kind (kubernetes-sigs/kind)</summary>

### [`v0.22.0`](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.22.0)

[Compare Source](https://togithub.com/kubernetes-sigs/kind/compare/v0.21.0...v0.22.0)

This release is a quick follow-up to [v0.21.0](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.21.0) with bug fixes including not overriding the host's binfmt_misc (a regression in v0.20.0, see: [https://github.com/kubernetes-sigs/kind/issues/3510](https://togithub.com/kubernetes-sigs/kind/issues/3510)).

<h1 id="breaking-changes">Breaking Changes</h1>

-   The default node image is now Kubernetes 1.29.2: `kindest/node:v1.29.2@&#8203;sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245`

**If you haven't already, please see also [v0.21.0  release notes](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.21.0) given the short time between releases.**

<h1 id="new-features">New Features</h1>

-   Remove `exclude-from-external-load-balancers` from single node clusters [https://github.com/kubernetes-sigs/kind/issues/3506](https://togithub.com/kubernetes-sigs/kind/issues/3506)
-   Support for building node images on hosts with proxies

Images pre-built for this release:

-   v1.29.2: `kindest/node:v1.29.2@&#8203;sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245`
-   v1.29.1: `kindest/node:v1.29.1@&#8203;sha256:0c06baa545c3bb3fbd4828eb49b8b805f6788e18ce67bff34706ffa91866558b`
-   v1.28.7: `kindest/node:v1.28.7@&#8203;sha256:9bc6c451a289cf96ad0bbaf33d416901de6fd632415b076ab05f5fa7e4f65c58`
-   v1.28.6: `kindest/node:v1.28.6@&#8203;sha256:e9e59d321795595d0eed0de48ef9fbda50388dc8bd4a9b23fb9bd869f370ec7e`
-   v1.27.11: `kindest/node:v1.27.11@&#8203;sha256:681253009e68069b8e01aad36a1e0fa8cf18bb0ab3e5c4069b2e65cafdd70843`
-   v1.27.10: `kindest/node:v1.27.10@&#8203;sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476`
-   v1.26.14: `kindest/node:v1.26.14@&#8203;sha256:5d548739ddef37b9318c70cb977f57bf3e5015e4552be4e27e57280a8cbb8e4f`
-   v1.26.13: `kindest/node:v1.26.13@&#8203;sha256:8cb4239d64ff897e0c21ad19fe1d68c3422d4f3c1c1a734b7ab9ccc76c549605`
-   v1.25.16: `kindest/node:v1.25.16@&#8203;sha256:e8b50f8e06b44bb65a93678a65a26248fae585b3d3c2a669e5ca6c90c69dc519`
-   v1.24.17: `kindest/node:v1.24.17@&#8203;sha256:bad10f9b98d54586cba05a7eaa1b61c6b90bfc4ee174fdc43a7b75ca75c95e51`
-   v1.23.17: `kindest/node:v1.23.17@&#8203;sha256:14d0a9a892b943866d7e6be119a06871291c517d279aedb816a4b4bc0ec0a5b3`

**NOTE**: You *must* use the `@sha256` digest to guarantee an image built for this release, until such a time as we switch to a different tagging scheme. Even then we will highly encourage digest pinning for security and reproducibility reasons.

See also:

-   https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster
-   https://kind.sigs.k8s.io/docs/user/quick-start/#building-images

NOTE: These node images support amd64 and arm64, both of our supported platforms. **You must use the same platform as your host,** for more context see [https://github.com/kubernetes-sigs/kind/issues/2718](https://togithub.com/kubernetes-sigs/kind/issues/2718)

<h1 id="fixes">Fixes</h1>

-   binfmt_misc no longer set by node images (regression in v0.20.0)
-   fix runc hooks when non-root / usernamespaces
-   Support multiple random extraPortMappings
-   Docs fixes for contour and WSL2

<h1 id="contributors">Contributors</h1>

**Thank you to everyone who contributed to this release! ❤️**

Users whose commits are in this release (alphabetically by user name)

-   [@&#8203;BenTheElder](https://togithub.com/BenTheElder)
-   [@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
-   [@&#8203;dgl](https://togithub.com/dgl)
-   [@&#8203;howardjohn](https://togithub.com/howardjohn)
-   [@&#8203;k8s-ci-robot](https://togithub.com/k8s-ci-robot)
-   [@&#8203;r-suke](https://togithub.com/r-suke)
-   [@&#8203;skriss](https://togithub.com/skriss)
-   [@&#8203;wouterh-dev](https://togithub.com/wouterh-dev)
-   [@&#8203;Zumium](https://togithub.com/Zumium)

Thank you as well to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, and helping users in slack!

### [`v0.21.0`](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.21.0)

[Compare Source](https://togithub.com/kubernetes-sigs/kind/compare/v0.20.0...v0.21.0)

This release patches the recent [runc CVEs](https://togithub.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv), as well as an issue with `kind build node-image` and docker v25.0.0+

<h1 id="breaking-changes">Breaking Changes</h1>

-   The default node image is a Kubernetes `v1.29.1` image: `kindest/node:v1.29.1@&#8203;sha256:a0cc28af37cf39b019e2b448c54d1a3f789de32536cb5a5db61a49623e527144`

**If you haven't already, please see also [v0.20.0  release notes](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.20.0) which had important announcements that still apply going forward**.

<h1 id="new-features">New Features</h1>

-   Upgraded go to 1.20.13
-   Upgraded crictl to 1.28
-   Upgraded containerd fuse overlayfs to 1.0.6
-   Began marking some core images pinned in containerd, which may eventually make enabling imageGC safer
-   kindnetd will ignore nodes with empty podCIDR, enabling some niche use-cases

Images pre-built for this release:

-   v1.29.1: `kindest/node:v1.29.1@&#8203;sha256:a0cc28af37cf39b019e2b448c54d1a3f789de32536cb5a5db61a49623e527144`
-   v1.28.6: `kindest/node:v1.28.6@&#8203;sha256:b7e1cf6b2b729f604133c667a6be8aab6f4dde5bb042c1891ae248d9154f665b`
-   v1.27.10: `kindest/node:v1.27.10@&#8203;sha256:3700c811144e24a6c6181065265f69b9bf0b437c45741017182d7c82b908918f`
-   v1.26.13: `kindest/node:v1.26.13@&#8203;sha256:15ae92d507b7d4aec6e8920d358fc63d3b980493db191d7327541fbaaed1f789`
-   v1.25.16: `kindest/node:v1.25.16@&#8203;sha256:9d0a62b55d4fe1e262953be8d406689b947668626a357b5f9d0cfbddbebbc727`
-   v1.24.17: `kindest/node:v1.24.17@&#8203;sha256:ea292d57ec5dd0e2f3f5a2d77efa246ac883c051ff80e887109fabefbd3125c7`
-   v1.23.17: `kindest/node:v1.23.17@&#8203;sha256:fbb92ac580fce498473762419df27fa8664dbaa1c5a361b5957e123b4035bdcf`

**NOTE**: You *must* use the `@sha256` digest to guarantee an image built for this release, until such a time as we switch to a different tagging scheme. Even then we will highly encourage digest pinning for security and reproducibility reasons.

See also:

-   https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster
-   https://kind.sigs.k8s.io/docs/user/quick-start/#building-images

NOTE: These node images support amd64 and arm64, both of our supported platforms. **You must use the same platform as your host,** for more context see [https://github.com/kubernetes-sigs/kind/issues/2718](https://togithub.com/kubernetes-sigs/kind/issues/2718)

<h1 id="fixes">Fixes</h1>

-   Updated runc to v1.1.12, containerd to v1.7.13 including the fix for https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv
-   Fixed `kind build node-image` with docker v25.0.0+
    -   **NOTE**: `kind load docker-image` is still broken with Docker v25.0.0 due to a docker bug, which has a fix merged that should be included in Docker v25.0.1+
-   Assorted docs fixes

<h1 id="contributors">Contributors</h1>

**Thank you to everyone who contributed to this release! ❤️**

Users whose commits are in this release (alphabetically by user name)

-   [@&#8203;adelton](https://togithub.com/adelton)
-   [@&#8203;ameukam](https://togithub.com/ameukam)
-   [@&#8203;AkihiroSuda](https://togithub.com/AkihiroSuda)
-   [@&#8203;AryanSharma9917](https://togithub.com/AryanSharma9917)
-   [@&#8203;BenTheElder](https://togithub.com/BenTheElder)
-   [@&#8203;bpfoster](https://togithub.com/bpfoster)
-   [@&#8203;corneliusroemer](https://togithub.com/corneliusroemer)
-   [@&#8203;dependabot](https://togithub.com/dependabot)\[bot]
-   [@&#8203;k8s-ci-robot](https://togithub.com/k8s-ci-robot)
-   [@&#8203;kir4h](https://togithub.com/kir4h)
-   [@&#8203;liangyuanpeng](https://togithub.com/liangyuanpeng)
-   [@&#8203;lixin963](https://togithub.com/lixin963)
-   [@&#8203;matzew](https://togithub.com/matzew)
-   [@&#8203;mausearce](https://togithub.com/mausearce)
-   [@&#8203;ronaldpetty](https://togithub.com/ronaldpetty)
-   [@&#8203;roman-kiselenko](https://togithub.com/roman-kiselenko)
-   [@&#8203;saschagrunert](https://togithub.com/saschagrunert)

Thank you as well to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, and helping users in slack!

</details>

<details>
<summary>myrotvorets/set-commit-status-action (myrotvorets/set-commit-status-action)</summary>

### [`v2.0.1`](https://togithub.com/myrotvorets/set-commit-status-action/releases/tag/v2.0.1)

[Compare Source](https://togithub.com/myrotvorets/set-commit-status-action/compare/v2.0.0...v2.0.1)

##### What's Changed

-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.6.0 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/440](https://togithub.com/myrotvorets/set-commit-status-action/pull/440)
-   chore(deps): lock file maintenance by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/441](https://togithub.com/myrotvorets/set-commit-status-action/pull/441)
-   chore(deps): update dependency [@&#8203;actions/core](https://togithub.com/actions/core) to v1.10.1 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/442](https://togithub.com/myrotvorets/set-commit-status-action/pull/442)
-   chore(deps): update dependency [@&#8203;octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v7.3.0 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/443](https://togithub.com/myrotvorets/set-commit-status-action/pull/443)
-   chore(deps): update github/codeql-action digest to [`701f152`](https://togithub.com/myrotvorets/set-commit-status-action/commit/701f152) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/444](https://togithub.com/myrotvorets/set-commit-status-action/pull/444)
-   chore(deps): update github/codeql-action digest to [`04daf01`](https://togithub.com/myrotvorets/set-commit-status-action/commit/04daf01) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/445](https://togithub.com/myrotvorets/set-commit-status-action/pull/445)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.6.1 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/446](https://togithub.com/myrotvorets/set-commit-status-action/pull/446)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.6.2 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/447](https://togithub.com/myrotvorets/set-commit-status-action/pull/447)
-   chore(deps): update dependency [@&#8203;octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v7.3.1 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/448](https://togithub.com/myrotvorets/set-commit-status-action/pull/448)
-   chore(deps): lock file maintenance by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/449](https://togithub.com/myrotvorets/set-commit-status-action/pull/449)
-   chore(deps): update github/codeql-action digest to [`6a28655`](https://togithub.com/myrotvorets/set-commit-status-action/commit/6a28655) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/450](https://togithub.com/myrotvorets/set-commit-status-action/pull/450)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.6.3 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/451](https://togithub.com/myrotvorets/set-commit-status-action/pull/451)
-   chore(deps): update actions/checkout digest to [`8ade135`](https://togithub.com/myrotvorets/set-commit-status-action/commit/8ade135) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/452](https://togithub.com/myrotvorets/set-commit-status-action/pull/452)
-   chore(deps): update actions/checkout action to v4.1.0 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/453](https://togithub.com/myrotvorets/set-commit-status-action/pull/453)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.6.4 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/454](https://togithub.com/myrotvorets/set-commit-status-action/pull/454)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.6.5 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/455](https://togithub.com/myrotvorets/set-commit-status-action/pull/455)
-   chore(deps): lock file maintenance by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/456](https://togithub.com/myrotvorets/set-commit-status-action/pull/456)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.7.0 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/457](https://togithub.com/myrotvorets/set-commit-status-action/pull/457)
-   chore(deps): update github/codeql-action digest to [`ddccb87`](https://togithub.com/myrotvorets/set-commit-status-action/commit/ddccb87) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/458](https://togithub.com/myrotvorets/set-commit-status-action/pull/458)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.7.1 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/459](https://togithub.com/myrotvorets/set-commit-status-action/pull/459)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.7.2 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/460](https://togithub.com/myrotvorets/set-commit-status-action/pull/460)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.8.0 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/461](https://togithub.com/myrotvorets/set-commit-status-action/pull/461)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.8.2 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/462](https://togithub.com/myrotvorets/set-commit-status-action/pull/462)
-   chore(deps): update github/codeql-action digest to [`2cb752a`](https://togithub.com/myrotvorets/set-commit-status-action/commit/2cb752a) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/463](https://togithub.com/myrotvorets/set-commit-status-action/pull/463)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to v20.8.3 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/464](https://togithub.com/myrotvorets/set-commit-status-action/pull/464)
-   chore(deps): update dependency [@&#8203;myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.21.0 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/465](https://togithub.com/myrotvorets/set-commit-status-action/pull/465)
-   chore(deps): update dependency typescript to ^5.2.2 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/466](https://togithub.com/myrotvorets/set-commit-status-action/pull/466)
-   chore(deps): update devdependencies (non-major) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/467](https://togithub.com/myrotvorets/set-commit-status-action/pull/467)
-   chore(deps): update github/codeql-action digest to [`fdcae64`](https://togithub.com/myrotvorets/set-commit-status-action/commit/fdcae64) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/468](https://togithub.com/myrotvorets/set-commit-status-action/pull/468)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.4 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/469](https://togithub.com/myrotvorets/set-commit-status-action/pull/469)
-   chore(deps): update dependency [@&#8203;actions/github](https://togithub.com/actions/github) to v6 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/470](https://togithub.com/myrotvorets/set-commit-status-action/pull/470)
-   chore(deps): update dependency [@&#8203;myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.22.4 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/471](https://togithub.com/myrotvorets/set-commit-status-action/pull/471)
-   chore(deps): update github/codeql-action digest to [`d90b8d7`](https://togithub.com/myrotvorets/set-commit-status-action/commit/d90b8d7) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/472](https://togithub.com/myrotvorets/set-commit-status-action/pull/472)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.5 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/473](https://togithub.com/myrotvorets/set-commit-status-action/pull/473)
-   chore(deps): update dependency [@&#8203;myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.22.5 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/474](https://togithub.com/myrotvorets/set-commit-status-action/pull/474)
-   chore(deps): update github/codeql-action digest to [`0116bc2`](https://togithub.com/myrotvorets/set-commit-status-action/commit/0116bc2) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/475](https://togithub.com/myrotvorets/set-commit-status-action/pull/475)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.6 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/476](https://togithub.com/myrotvorets/set-commit-status-action/pull/476)
-   chore(deps): lock file maintenance by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/477](https://togithub.com/myrotvorets/set-commit-status-action/pull/477)
-   fix(deps): roll back actions/checkout action by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/478](https://togithub.com/myrotvorets/set-commit-status-action/pull/478)
-   chore(deps): update actions/checkout action to v4.1.1 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/479](https://togithub.com/myrotvorets/set-commit-status-action/pull/479)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.7 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/480](https://togithub.com/myrotvorets/set-commit-status-action/pull/480)
-   chore(deps): update dependency [@&#8203;vercel/ncc](https://togithub.com/vercel/ncc) to ^0.38.1 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/481](https://togithub.com/myrotvorets/set-commit-status-action/pull/481)
-   chore(deps): update github/codeql-action digest to [`49abf0b`](https://togithub.com/myrotvorets/set-commit-status-action/commit/49abf0b) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/482](https://togithub.com/myrotvorets/set-commit-status-action/pull/482)
-   chore(deps): lock file maintenance by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/483](https://togithub.com/myrotvorets/set-commit-status-action/pull/483)
-   chore(deps): update actions/setup-node action to v3.8.2 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/484](https://togithub.com/myrotvorets/set-commit-status-action/pull/484)
-   chore(deps): update actions/setup-node action to v4 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/485](https://togithub.com/myrotvorets/set-commit-status-action/pull/485)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.8 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/486](https://togithub.com/myrotvorets/set-commit-status-action/pull/486)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.9 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/487](https://togithub.com/myrotvorets/set-commit-status-action/pull/487)
-   chore(deps): update github/codeql-action digest to [`74483a3`](https://togithub.com/myrotvorets/set-commit-status-action/commit/74483a3) by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/488](https://togithub.com/myrotvorets/set-commit-status-action/pull/488)
-   chore(deps): update dependency [@&#8203;myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.22.6 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/489](https://togithub.com/myrotvorets/set-commit-status-action/pull/489)
-   chore(deps): lock file maintenance by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/490](https://togithub.com/myrotvorets/set-commit-status-action/pull/490)
-   chore(deps): update dependency [@&#8203;types/node](https://togithub.com/types/node) to ^20.8.10 by [@&#8203;renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-stat

</details>

---

### Configuration

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

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

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

👻 **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/aanm/cilium).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoidjEuMTUifQ==-->


Patch-set: 1
Change-id: Ia5cf44faeefd734e1b099fe177c892552cd94f79
Subject: chore(deps): update all github action dependencies
Branch: refs/heads/v1.15
Status: new
Topic: 
Commit: 8913e688a0b1e52ff817852112e89d2fbfab66fb
Tag: autogenerated:gerrit:newPatchSet
Groups: 8913e688a0b1e52ff817852112e89d2fbfab66fb
Private: false
Work-in-progress: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. triage/accepted Indicates an issue or PR is ready to be actively worked on.
Projects
None yet
Development

No branches or pull requests

6 participants