diff --git a/content/en/user-guide/ci/codebuild/index.md b/content/en/user-guide/ci/codebuild/index.md index 124847115a..595bd77318 100644 --- a/content/en/user-guide/ci/codebuild/index.md +++ b/content/en/user-guide/ci/codebuild/index.md @@ -44,7 +44,7 @@ phases: - run: docker pull public.ecr.aws/localstack/localstack:latest - run: docker image tag public.ecr.aws/localstack/localstack-pro:latest localstack/localstack:latest - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: image-tag: 'latest' install-awslocal: 'true' @@ -82,7 +82,7 @@ phases: steps: ... - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: image-tag: 'latest' configuration: LS_LOG=trace @@ -128,7 +128,7 @@ phases: - run: docker pull public.ecr.aws/localstack/localstack-pro:latest - run: docker image tag public.ecr.aws/localstack/localstack-pro:latest localstack/localstack-pro:latest - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: image-tag: 'latest' use-pro: 'true' @@ -194,7 +194,7 @@ phases: # LocalStack is up and running already - name: Load the Cloud Pod continue-on-error: true # Allow it to fail as pod does not exist at first run - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: state-backend: cloud-pods name: @@ -202,7 +202,7 @@ phases: skip-startup: 'true' ... - name: Save the Cloud Pod - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: state-backend: cloud-pods state-name: diff --git a/content/en/user-guide/ci/github-actions/index.md b/content/en/user-guide/ci/github-actions/index.md index 58c1d615bd..b45cd1f031 100644 --- a/content/en/user-guide/ci/github-actions/index.md +++ b/content/en/user-guide/ci/github-actions/index.md @@ -14,7 +14,7 @@ This page contains easily customisable snippets to show you how to manage LocalS ```yaml - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: image-tag: 'latest' install-awslocal: 'true' @@ -25,7 +25,7 @@ To set LocalStack configuration options, you can use the `configuration` input p ```yml - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: image-tag: 'latest' install-awslocal: 'true' @@ -52,7 +52,7 @@ Additionally, you need to modify your GitHub Action workflow to use the `localst ```yaml - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: image-tag: 'latest' install-awslocal: 'true' @@ -78,7 +78,7 @@ You can preserve your AWS infrastructure with Localstack in various ways. # Localstack is up and running already - name: Load the Cloud Pod continue-on-error: true # Allow it to fail as pod does not exist at first run - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: state-backend: cloud-pods state-name: @@ -88,7 +88,7 @@ You can preserve your AWS infrastructure with Localstack in various ways. ... - name: Save the Cloud Pod - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: state-backend: cloud-pods state-name: @@ -120,7 +120,7 @@ jobs: ... - name: Deploy Preview - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 env: AWS_DEFAULT_REGION: us-east-1 AWS_REGION: us-east-1 @@ -140,7 +140,7 @@ Find out more about ephemeral instances [here](/user-guide/cloud-sandbox/). ```yaml ... - name: Start LocalStack and Load State - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 continue-on-error: true # Allow it to fail as pod does not exist at first run with: install-awslocal: 'true' @@ -153,7 +153,7 @@ Find out more about ephemeral instances [here](/user-guide/cloud-sandbox/). ... - name: Save LocalStack State - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: install-awslocal: 'true' state-backend: cloud-pods diff --git a/content/en/user-guide/cloud-sandbox/application-previews/index.md b/content/en/user-guide/cloud-sandbox/application-previews/index.md index 32f4387755..f99b752316 100644 --- a/content/en/user-guide/cloud-sandbox/application-previews/index.md +++ b/content/en/user-guide/cloud-sandbox/application-previews/index.md @@ -49,7 +49,7 @@ jobs: uses: actions/checkout@v4 - name: Deploy Preview - uses: LocalStack/setup-localstack@v0.2.0 + uses: LocalStack/setup-localstack@v0.2.2 with: github-token: ${{ secrets.GITHUB_TOKEN }} localstack-api-key: ${{ secrets.LOCALSTACK_API_KEY }}