From 56e358068771fb1e8230d0fc2dfe4e9a80cd826f Mon Sep 17 00:00:00 2001 From: Ramkumar Chinchani <45800463+rchincha@users.noreply.github.com> Date: Fri, 29 Sep 2023 11:32:27 -0700 Subject: [PATCH] ci: update localstack to 2.3.1 (#1869) Signed-off-by: Ramkumar Chinchani --- .github/actions/setup-localstack/action.yaml | 4 ++-- .github/workflows/ecosystem-tools.yaml | 4 ++-- .github/workflows/nightly.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/setup-localstack/action.yaml b/.github/actions/setup-localstack/action.yaml index 8deda0ad..61422780 100644 --- a/.github/actions/setup-localstack/action.yaml +++ b/.github/actions/setup-localstack/action.yaml @@ -20,9 +20,9 @@ runs: password: ${{ inputs.password }} - shell: bash run: | - pip install localstack==2.2.0 # Install LocalStack cli + pip install localstack==2.3.1 # Install LocalStack cli # Below image was copied manually from localstack/localstack:2.2 and uploaded to ghcr - docker pull ghcr.io/project-zot/ci-images/localstack:2.2 # Make sure to pull a working version of the image + docker pull ghcr.io/project-zot/ci-images/localstack:2.3.1 # Make sure to pull a working version of the image localstack start -d # Start LocalStack in the background echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container diff --git a/.github/workflows/ecosystem-tools.yaml b/.github/workflows/ecosystem-tools.yaml index 430fca92..c27183a5 100644 --- a/.github/workflows/ecosystem-tools.yaml +++ b/.github/workflows/ecosystem-tools.yaml @@ -66,8 +66,8 @@ jobs: - name: Install localstack run: | pip install --upgrade pyopenssl - pip install localstack==2.2.0 awscli-local[ver1] # install LocalStack cli and awslocal - docker pull ghcr.io/project-zot/ci-images/localstack:2.2 # Make sure to pull a working version of the image + pip install localstack==2.3.1 awscli-local[ver1] # install LocalStack cli and awslocal + docker pull ghcr.io/project-zot/ci-images/localstack:2.3.1 # Make sure to pull a working version of the image localstack start -d # Start LocalStack in the background echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index f303c740..38c3751d 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -43,8 +43,8 @@ jobs: - name: Install localstack run: | pip install --upgrade pyopenssl - pip install localstack==2.2.0 awscli-local[ver1] # install LocalStack cli and awslocal - docker pull ghcr.io/project-zot/ci-images/localstack:2.2 # Make sure to pull the latest version of the image + pip install localstack==2.3.1 awscli-local[ver1] # install LocalStack cli and awslocal + docker pull ghcr.io/project-zot/ci-images/localstack:2.3.1 # Make sure to pull the latest version of the image localstack start -d # Start LocalStack in the background echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container