From a9b3e54ee0052a2f40a4eb4ca8b39dfd3bc2bc65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20N=C3=A9meth?= Date: Fri, 23 Aug 2024 14:00:17 +0200 Subject: [PATCH] Fix action version in readme (#40) --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 80983e9..817a293 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ A GitHub Action to setup [LocalStack](https://github.com/localstack/localstack) ```yml - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: image-tag: 'latest' install-awslocal: 'true' @@ -31,7 +31,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d ### Install only CLIs and startup later ```yml - name: Install LocalStack CLIs - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: skip-startup: 'true' install-awslocal: 'true' @@ -39,7 +39,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d ... - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: image-tag: 'latest' env: @@ -49,7 +49,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d ### Save a state later on in the pipeline ```yml - name: Save LocalStack State - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: install-awslocal: 'true' state-backend: cloud-pods @@ -63,7 +63,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d ### Load an already saved state ```yml - name: Start LocalStack and Load State - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: install-awslocal: 'true' state-backend: cloud-pods @@ -78,7 +78,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d ### Manage Application Previews (on an Ephemeral Instance) ```yml -uses: LocalStack/setup-localstack@$v0.2.0 +uses: LocalStack/setup-localstack@v0.2.3 with: github-token: ${{ secrets.GITHUB_TOKEN }} state-backend: ephemeral @@ -93,7 +93,7 @@ uses: LocalStack/setup-localstack@$v0.2.0 ... with: - uses: LocalStack/setup-localstack@${{ env.GH_ACTION_VERSION }} + uses: LocalStack/setup-localstack@v0.2.3 with: github-token: ${{ secrets.GITHUB_TOKEN }} state-backend: ephemeral @@ -137,7 +137,7 @@ jobs: - uses: actions/checkout@v3 - name: Start LocalStack - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: image-tag: 'latest' install-awslocal: 'true' @@ -156,7 +156,7 @@ jobs: echo "Test Execution complete!" - name: Save LocalStack State - uses: LocalStack/setup-localstack@v0.2.2 + uses: LocalStack/setup-localstack@v0.2.3 with: state-backend: local state-action: save