From 2fe6edb22b5dbb1c12040bd83966df33c7f015d5 Mon Sep 17 00:00:00 2001 From: Renato Valenzuela Date: Fri, 5 Dec 2025 23:28:57 +0000 Subject: [PATCH 1/2] fix: pin ruby action to specific version Pin Ruby action to specific version until Lambda Buidlers support `bundler` 4.0.0 --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b0bd5f07e2..8980856796 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -160,7 +160,8 @@ jobs: - uses: actions/setup-go@v6 with: go-version: '1.19' - - uses: ruby/setup-ruby@v1 + # Pin to specific version until Lambda Builders support bundler 4.0.0 + - uses: ruby/setup-ruby@v1.268.0 with: ruby-version: "3.3" - uses: actions/setup-node@v6 From f707486fec56baf331a10ac536ba0b07374d12d8 Mon Sep 17 00:00:00 2001 From: Renato Valenzuela Date: Fri, 5 Dec 2025 23:33:11 +0000 Subject: [PATCH 2/2] run tests in valerena --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8980856796..44ff1739af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: name: PR Workflow # If any dependent jobs fails, this WF skips which won't block merging PRs # calling always() is required for this WF to run all the time - if: github.repository_owner == 'aws' && always() + if: github.repository_owner == 'valerena' && always() runs-on: ubuntu-latest needs: - make-pr @@ -45,7 +45,7 @@ jobs: make-pr: name: make pr / ${{ matrix.os }} / ${{ matrix.python }} - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valerena' runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -73,7 +73,7 @@ jobs: validate-schema: name: Validate JSON schema - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valerena' permissions: pull-requests: write contents: write @@ -96,7 +96,7 @@ jobs: integration-tests: name: Integ / ${{ matrix.os }} / ${{ matrix.python }} / ${{ matrix.tests_config.name }} - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valerena' runs-on: ${{ matrix.os }} env: AWS_DEFAULT_REGION: us-east-1 @@ -198,7 +198,7 @@ jobs: smoke-and-functional-tests: name: ${{ matrix.tests_config.name }} / ${{ matrix.tests_config.os }} / ${{ matrix.python }} - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valerena' runs-on: ${{ matrix.tests_config.os }} env: AWS_DEFAULT_REGION: us-east-1 @@ -250,7 +250,7 @@ jobs: docker-disabled: name: Docker-disabled Tests / ${{ matrix.os }} - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valerena' runs-on: ${{ matrix.os }} env: SAM_CLI_DEV: "1"