From bb40e5e100b49dfbc7919d1134d4961535fdd973 Mon Sep 17 00:00:00 2001 From: Matt Wrock Date: Fri, 31 Jul 2026 09:46:22 -0700 Subject: [PATCH 1/3] fix hard-coded version Signed-off-by: Matt Wrock --- .github/workflows/ci-main-pull-request-stub.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-main-pull-request-stub.yml b/.github/workflows/ci-main-pull-request-stub.yml index 7c3c4cad5..9e08b8f76 100644 --- a/.github/workflows/ci-main-pull-request-stub.yml +++ b/.github/workflows/ci-main-pull-request-stub.yml @@ -40,10 +40,9 @@ jobs: # go-private-modules: GOPRIVATE for Go private modules, default is 'github.com/progress-platform-services/* # if version specified, it takes precedence; can be a semver like 1.0.2-xyz or a tag like "latest" - version: '20251014' # ${{ github.event.repository.version }} - detect-version-source-type: 'none' # options include "none" (do not detect), "file", "github-tag" or "github-release" - detect-version-source-parameter: '' # use for file name - language: 'rust' # Go, Ruby, Rust, JavaScript, TypeScript, Python, Java, C#, PHP, other - used for build and SonarQube language setting + # version is sourced from the repo VERSION file to keep BlackDuck/SBOM steps aligned + detect-version-source-type: 'file' # options include "none" (do not detect), "file", "github-tag" or "github-release" + detect-version-source-parameter: 'VERSION' # filename to read the version from language: 'rust' # Go, Ruby, Rust, JavaScript, TypeScript, Python, Java, C#, PHP, other - used for build and SonarQube language setting # complexity-checks perform-complexity-checks: true From c002967a5ff3c3d3cee3adcb26f77fe1bfd159af Mon Sep 17 00:00:00 2001 From: Matt Wrock Date: Thu, 6 Aug 2026 08:32:11 -0700 Subject: [PATCH 2/3] add aarch64 linux and darwin as default platforms Signed-off-by: Matt Wrock --- components/builder-api/habitat/default.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/builder-api/habitat/default.toml b/components/builder-api/habitat/default.toml index 4e42d56c2..80a96a26e 100644 --- a/components/builder-api/habitat/default.toml +++ b/components/builder-api/habitat/default.toml @@ -1,7 +1,7 @@ log_level = "info" [api] -targets = ["x86_64-linux", "x86_64-linux-kernel2", "x86_64-windows"] +targets = ["x86_64-linux", "x86_64-linux-kernel2", "x86_64-windows", "aarch64-darwin", "aarch64-linux"] saas_bldr_url = "https://bldr.habitat.sh" license_server_url = "http://licensing-acceptance.chef.co" allowed_native_package_origins = [] From 42e0aa26ec93a92629a9971830a5c26ce00e0957 Mon Sep 17 00:00:00 2001 From: Matt Wrock Date: Thu, 6 Aug 2026 08:42:18 -0700 Subject: [PATCH 3/3] fix yaml issue Signed-off-by: Matt Wrock --- .github/workflows/ci-main-pull-request-stub.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-main-pull-request-stub.yml b/.github/workflows/ci-main-pull-request-stub.yml index 9e08b8f76..1afdd90a9 100644 --- a/.github/workflows/ci-main-pull-request-stub.yml +++ b/.github/workflows/ci-main-pull-request-stub.yml @@ -42,7 +42,8 @@ jobs: # if version specified, it takes precedence; can be a semver like 1.0.2-xyz or a tag like "latest" # version is sourced from the repo VERSION file to keep BlackDuck/SBOM steps aligned detect-version-source-type: 'file' # options include "none" (do not detect), "file", "github-tag" or "github-release" - detect-version-source-parameter: 'VERSION' # filename to read the version from language: 'rust' # Go, Ruby, Rust, JavaScript, TypeScript, Python, Java, C#, PHP, other - used for build and SonarQube language setting + detect-version-source-parameter: 'VERSION' # filename to read the version from + language: 'rust' # Go, Ruby, Rust, JavaScript, TypeScript, Python, Java, C#, PHP, other - used for build and SonarQube language setting # complexity-checks perform-complexity-checks: true