From a8ca89b7a8ebf689824604a9b58fdd542f5015a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 16:51:17 +0000 Subject: [PATCH 1/2] Bump azure/k8s-bake from 3.0.4 to 4.0.0 Bumps [azure/k8s-bake](https://github.com/azure/k8s-bake) from 3.0.4 to 4.0.0. - [Release notes](https://github.com/azure/k8s-bake/releases) - [Changelog](https://github.com/Azure/k8s-bake/blob/main/CHANGELOG.md) - [Commits](https://github.com/azure/k8s-bake/compare/v3.0.4...v4.0.0) --- updated-dependencies: - dependency-name: azure/k8s-bake dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integration-per-language.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-per-language.yml b/.github/workflows/integration-per-language.yml index 483c841a..fb484466 100644 --- a/.github/workflows/integration-per-language.yml +++ b/.github/workflows/integration-per-language.yml @@ -91,7 +91,7 @@ jobs: echo "imagename=${{ steps.kind-registry.outputs.local-registry }}/testapp" >> "$GITHUB_ENV" # Runs Helm to create manifest files - name: Bake deployment - uses: azure/k8s-bake@v3.0.4 + uses: azure/k8s-bake@v4.0.0 with: renderEngine: "helm" helmChart: ./langtest/charts @@ -262,7 +262,7 @@ jobs: run: | echo "imagename=${{ steps.kind-registry.outputs.local-registry }}/testapp" >> "$GITHUB_ENV" - name: Bake deployment - uses: azure/k8s-bake@v3.0.4 + uses: azure/k8s-bake@v4.0.0 id: bake with: renderEngine: "kustomize" From 6f702bce16e77531823309cbf0ecca1b39ef8ed4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 17:19:55 +0000 Subject: [PATCH 2/2] Fix Windows cygwin OSTYPE detection in install script Agent-Logs-Url: https://github.com/Azure/draft/sessions/cd74305c-a2e9-4424-aced-d98e41e460e6 Co-authored-by: davidgamero <4248857+davidgamero@users.noreply.github.com> --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 98b0b772..5542bcb5 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -150,7 +150,7 @@ install() { OS="linux" elif [[ "$OSTYPE" == "darwin"* ]]; then OS="darwin" - elif [[ "$OSTYPE" == "win32" || "$OSTYPE" == "msys" ]]; then + elif [[ "$OSTYPE" == "win32" || "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then OS="windows" else echo "Draft CLI isn't supported for your platform - $OSTYPE"