From f4bc24d6df084f8703b75df400e2bb8f1131d7bc Mon Sep 17 00:00:00 2001 From: Jesper Terkelsen Date: Mon, 23 Feb 2026 13:50:49 +0100 Subject: [PATCH] chore: change architecture default from x64 to arm64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All shared workflows with an architecture input now default to arm64 runners instead of x64. This affects test, PR, coverage, sonarcloud, and deploy orchestration workflows — none of which produce architecture-specific artifacts (JVM, Python, Node.js, Bun are all cross-platform). Docker image builds (component-build.yml) are unaffected as they already build both architectures in a matrix. Consumers can still override with `architecture: "x64"` if needed. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/code-coverage-kotlin.yml | 2 +- .github/workflows/component-test-kotlin.yml | 2 +- .github/workflows/component-test-python.yml | 2 +- .github/workflows/deploy-generic-v2.yml | 2 +- .github/workflows/deploy-generic.yml | 2 +- .github/workflows/deploy-kotlin.yml | 2 +- .github/workflows/deploy-python.yml | 2 +- .github/workflows/pull-request-bun.yml | 2 +- .github/workflows/pull-request-kotlin.yml | 2 +- .github/workflows/pull-request-react.yml | 2 +- .github/workflows/sonar-cloud.yml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/code-coverage-kotlin.yml b/.github/workflows/code-coverage-kotlin.yml index 64478f0..37c07bc 100644 --- a/.github/workflows/code-coverage-kotlin.yml +++ b/.github/workflows/code-coverage-kotlin.yml @@ -15,7 +15,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" java-version: required: false type: string diff --git a/.github/workflows/component-test-kotlin.yml b/.github/workflows/component-test-kotlin.yml index a7af062..d637b4e 100644 --- a/.github/workflows/component-test-kotlin.yml +++ b/.github/workflows/component-test-kotlin.yml @@ -10,7 +10,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" service-name: required: false type: string diff --git a/.github/workflows/component-test-python.yml b/.github/workflows/component-test-python.yml index 8f726df..25265bf 100644 --- a/.github/workflows/component-test-python.yml +++ b/.github/workflows/component-test-python.yml @@ -10,7 +10,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" service-name: required: false type: string diff --git a/.github/workflows/deploy-generic-v2.yml b/.github/workflows/deploy-generic-v2.yml index 50f37b4..21a562f 100644 --- a/.github/workflows/deploy-generic-v2.yml +++ b/.github/workflows/deploy-generic-v2.yml @@ -12,7 +12,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" stage: required: true type: string diff --git a/.github/workflows/deploy-generic.yml b/.github/workflows/deploy-generic.yml index 440aef6..04c3826 100644 --- a/.github/workflows/deploy-generic.yml +++ b/.github/workflows/deploy-generic.yml @@ -12,7 +12,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" stage: required: true type: string diff --git a/.github/workflows/deploy-kotlin.yml b/.github/workflows/deploy-kotlin.yml index 07f3632..b2bc5d7 100644 --- a/.github/workflows/deploy-kotlin.yml +++ b/.github/workflows/deploy-kotlin.yml @@ -12,7 +12,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" stage: required: true type: string diff --git a/.github/workflows/deploy-python.yml b/.github/workflows/deploy-python.yml index 4eac058..0c5e4e7 100644 --- a/.github/workflows/deploy-python.yml +++ b/.github/workflows/deploy-python.yml @@ -12,7 +12,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" stage: required: true type: string diff --git a/.github/workflows/pull-request-bun.yml b/.github/workflows/pull-request-bun.yml index 12003d3..6f5bd4b 100644 --- a/.github/workflows/pull-request-bun.yml +++ b/.github/workflows/pull-request-bun.yml @@ -11,7 +11,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" bun-version: required: false type: string diff --git a/.github/workflows/pull-request-kotlin.yml b/.github/workflows/pull-request-kotlin.yml index ef835f6..419cff5 100644 --- a/.github/workflows/pull-request-kotlin.yml +++ b/.github/workflows/pull-request-kotlin.yml @@ -11,7 +11,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" java-version: required: false type: string diff --git a/.github/workflows/pull-request-react.yml b/.github/workflows/pull-request-react.yml index d9f818c..9ea0861 100644 --- a/.github/workflows/pull-request-react.yml +++ b/.github/workflows/pull-request-react.yml @@ -11,7 +11,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" node-version: required: false type: string diff --git a/.github/workflows/sonar-cloud.yml b/.github/workflows/sonar-cloud.yml index 01209aa..d71e267 100644 --- a/.github/workflows/sonar-cloud.yml +++ b/.github/workflows/sonar-cloud.yml @@ -11,7 +11,7 @@ on: required: false type: string description: "Runner architecture (x64 or arm64)" - default: "x64" + default: "arm64" java-version: required: false type: string