From ddeccae5a52825ddb406d6ffb381d42f00883d7f Mon Sep 17 00:00:00 2001 From: rishav-karanjit Date: Tue, 15 Jul 2025 22:00:04 -0700 Subject: [PATCH 1/3] auto commit --- .github/workflows/ci_test_go.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_test_go.yml b/.github/workflows/ci_test_go.yml index ae08194516..517331fdae 100644 --- a/.github/workflows/ci_test_go.yml +++ b/.github/workflows/ci_test_go.yml @@ -29,7 +29,7 @@ jobs: matrix: library: [DynamoDbEncryption, TestVectors] os: [ubuntu-22.04, macos-13] - go-version: ["1.23"] + go-version: ["1.23", "1.24"] runs-on: ${{ matrix.os }} permissions: id-token: write @@ -108,6 +108,11 @@ jobs: - name: Install Smithy-Dafny codegen dependencies uses: ./.github/actions/install_smithy_dafny_codegen_dependencies + - name: Install Go imports + shell: bash + run: | + go install golang.org/x/tools/cmd/goimports@latest + - name: Build ${{ matrix.library }} implementation shell: bash working-directory: ./${{ matrix.library }} From fbc48a1dc6cec0cba0aa5ec2fbc1b2b4ccf37875 Mon Sep 17 00:00:00 2001 From: rishav-karanjit Date: Tue, 15 Jul 2025 22:01:15 -0700 Subject: [PATCH 2/3] auto commit --- .../action.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/actions/install_smithy_dafny_codegen_dependencies/action.yml b/.github/actions/install_smithy_dafny_codegen_dependencies/action.yml index 3a51781539..170d87d616 100644 --- a/.github/actions/install_smithy_dafny_codegen_dependencies/action.yml +++ b/.github/actions/install_smithy_dafny_codegen_dependencies/action.yml @@ -30,16 +30,6 @@ runs: python -m pip install --upgrade black python -m pip install --upgrade docformatter - - name: Install Go - uses: actions/setup-go@v5 - with: - go-version: "1.23" - - - name: Install Go imports - shell: bash - run: | - go install golang.org/x/tools/cmd/goimports@latest - # Without this the if-dafny-at-least command includes "Downloading ..." output - name: Arbitrary makefile target to force downloading Gradle shell: bash From 2d8e2a40f5a63893e8771c93e04ecb054bb7624b Mon Sep 17 00:00:00 2001 From: rishav-karanjit Date: Tue, 15 Jul 2025 22:10:54 -0700 Subject: [PATCH 3/3] auto commit --- .github/workflows/ci_test_go.yml | 1 + .github/workflows/ci_test_java.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci_test_go.yml b/.github/workflows/ci_test_go.yml index 517331fdae..78b3b8abe1 100644 --- a/.github/workflows/ci_test_go.yml +++ b/.github/workflows/ci_test_go.yml @@ -26,6 +26,7 @@ on: jobs: testGo: strategy: + fail-fast: false matrix: library: [DynamoDbEncryption, TestVectors] os: [ubuntu-22.04, macos-13] diff --git a/.github/workflows/ci_test_java.yml b/.github/workflows/ci_test_java.yml index 34d8c1d088..4715bb174b 100644 --- a/.github/workflows/ci_test_java.yml +++ b/.github/workflows/ci_test_java.yml @@ -26,6 +26,7 @@ on: jobs: testJava: strategy: + fail-fast: false matrix: library: [DynamoDbEncryption] java-version: [8, 11, 16, 17]