Skip to content

Commit

Permalink
Fix action version in readme (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger authored Aug 23, 2024
1 parent 84a2a9c commit a9b3e54
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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'
Expand All @@ -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
Expand Down

0 comments on commit a9b3e54

Please sign in to comment.