-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ A GitHub Action to setup [LocalStack](https://github.com/localstack/localstack) | |
|
||
```yml | ||
- name: Start LocalStack | ||
uses: LocalStack/[email protected].2 | ||
uses: LocalStack/[email protected].3 | ||
with: | ||
image-tag: 'latest' | ||
install-awslocal: 'true' | ||
|
@@ -31,15 +31,15 @@ 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/[email protected].2 | ||
uses: LocalStack/[email protected].3 | ||
with: | ||
skip-startup: 'true' | ||
install-awslocal: 'true' | ||
... | ||
- name: Start LocalStack | ||
uses: LocalStack/[email protected].2 | ||
uses: LocalStack/[email protected].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/[email protected].2 | ||
uses: LocalStack/[email protected].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/[email protected].2 | ||
uses: LocalStack/[email protected].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/[email protected].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/[email protected].2 | ||
uses: LocalStack/[email protected].3 | ||
with: | ||
image-tag: 'latest' | ||
install-awslocal: 'true' | ||
|
@@ -156,7 +156,7 @@ jobs: | |
echo "Test Execution complete!" | ||
- name: Save LocalStack State | ||
uses: LocalStack/[email protected].2 | ||
uses: LocalStack/[email protected].3 | ||
with: | ||
state-backend: local | ||
state-action: save | ||
|