From b5a8b1089a56edf09cb7960db35119d05d46b389 Mon Sep 17 00:00:00 2001 From: Michael Maeng Date: Thu, 21 Sep 2023 08:31:07 -0700 Subject: [PATCH 1/3] update brew tap command for docker --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 282b560..3031db5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,8 +32,8 @@ jobs: - name: Update Homebrew and save docker version if: runner.os == 'macOS' run: | - brew update --preinstall - cat "$(brew --repository)/Library/Taps/homebrew/homebrew-core/Formula/docker.rb" > .github/brew-formulae + brew tap homebrew/core + cat "$(brew --repository)/Library/Taps/homebrew/homebrew-core/Formula/d/docker.rb" > .github/brew-formulae - name: Configure Homebrew docker cache files uses: actions/cache@v3 if: runner.os == 'macOS' From dc54cf3199d947fb6c79c91902a7c85360c90fdb Mon Sep 17 00:00:00 2001 From: Michael Maeng Date: Thu, 21 Sep 2023 08:31:45 -0700 Subject: [PATCH 2/3] update success log search --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3031db5..7a53aa8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,7 +121,7 @@ jobs: sam build --debug --build-dir ./build TypeFunction sam build --debug --build-dir ./build TestEntrypoint sam local invoke -t ./build/template.yaml --debug --event ./sam-tests/create.json --log-file ./sam.log TestEntrypoint - grep -q '"status":"SUCCESS"' sam.log + grep -q '"SUCCESS"' sam.log - name: Gather Debug Logs id: gather_logs continue-on-error: true From 1420b4656aaef962ac3fb03b5b98e0a1ce18a8ef Mon Sep 17 00:00:00 2001 From: Michael Maeng Date: Thu, 21 Sep 2023 08:32:34 -0700 Subject: [PATCH 3/3] update python and node --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a53aa8..97d04c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,14 +10,14 @@ jobs: steps: - uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.9 os_build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, macos-latest ] - python: [ 3.7, 3.8, 3.9 ] - node: [ 14 ] + python: [ 3.8, 3.9 ] + node: [ 18 ] env: SAM_CLI_TELEMETRY: "0" AWS_REGION: "us-east-1"