From 8e1b41238006c2eb5764d026ab99036f76dc9c83 Mon Sep 17 00:00:00 2001 From: DriveWealth CI Date: Tue, 18 Aug 2026 17:13:32 -0500 Subject: [PATCH 1/3] fix(do-7299): bump dcarbone/install-jq-action to v3.2.0 with jq 1.7.1 for ARM64 dcarbone/install-jq-action@v2.1.0 with jq 1.6 exits with 'Cannot handle ARM64 architecture' on arm64 runners. jq 1.7+ ships arm64 binaries and dcarbone/install-jq-action@v3.2.0 handles them via unixish-17.sh. Same root cause as cloudposse/github-action-docker-build-push#68, fixed there by PR #73. --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index feaf533..07dd7e0 100644 --- a/action.yml +++ b/action.yml @@ -56,10 +56,10 @@ runs: echo "destroy=with_entries(select(.value | IN({0}[]))) | keys" >> $GITHUB_OUTPUT fi - - name: 'Install jq 1.6' - uses: dcarbone/install-jq-action@v2.1.0 + - name: 'Install jq' + uses: dcarbone/install-jq-action@v3.2.0 with: - version: 1.6 + version: 1.7.1 force: 'true' - uses: cloudposse/github-action-jq@0.4.0 From 79cbb19f94ccd39651d071ca8138ed92e2aa3358 Mon Sep 17 00:00:00 2001 From: DriveWealth CI Date: Wed, 19 Aug 2026 09:17:21 -0500 Subject: [PATCH 2/3] fix: update test-jq-version assertion to expect jq-1.7.1 --- .github/workflows/test-jq-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-jq-version.yml b/.github/workflows/test-jq-version.yml index 0b87d46..c53d923 100644 --- a/.github/workflows/test-jq-version.yml +++ b/.github/workflows/test-jq-version.yml @@ -64,7 +64,7 @@ jobs: - uses: nick-fields/assert-action@v2 with: - expected: 'jq-1.6' + expected: 'jq-1.7.1' actual: ${{ steps.new.outputs.version }} From 1d477c9e9a4cdc40c2a2a0c4a64ce2da38a99419 Mon Sep 17 00:00:00 2001 From: DriveWealth CI Date: Wed, 19 Aug 2026 09:42:45 -0500 Subject: [PATCH 3/3] chore: add CODEOWNERS to comply with DriveWealth org requirements --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..99240f2 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @DriveWealth/devops