Skip to content

Commit a9b3e54

Browse files
authored
Fix action version in readme (#40)
1 parent 84a2a9c commit a9b3e54

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A GitHub Action to setup [LocalStack](https://github.com/localstack/localstack)
1818

1919
```yml
2020
- name: Start LocalStack
21-
uses: LocalStack/[email protected].2
21+
uses: LocalStack/[email protected].3
2222
with:
2323
image-tag: 'latest'
2424
install-awslocal: 'true'
@@ -31,15 +31,15 @@ If the key is not found LocalStack by default falls back to the CE edition and d
3131
### Install only CLIs and startup later
3232
```yml
3333
- name: Install LocalStack CLIs
34-
uses: LocalStack/[email protected].2
34+
uses: LocalStack/[email protected].3
3535
with:
3636
skip-startup: 'true'
3737
install-awslocal: 'true'
3838
3939
...
4040
4141
- name: Start LocalStack
42-
uses: LocalStack/[email protected].2
42+
uses: LocalStack/[email protected].3
4343
with:
4444
image-tag: 'latest'
4545
env:
@@ -49,7 +49,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d
4949
### Save a state later on in the pipeline
5050
```yml
5151
- name: Save LocalStack State
52-
uses: LocalStack/[email protected].2
52+
uses: LocalStack/[email protected].3
5353
with:
5454
install-awslocal: 'true'
5555
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
6363
### Load an already saved state
6464
```yml
6565
- name: Start LocalStack and Load State
66-
uses: LocalStack/[email protected].2
66+
uses: LocalStack/[email protected].3
6767
with:
6868
install-awslocal: 'true'
6969
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
7878

7979
### Manage Application Previews (on an Ephemeral Instance)
8080
```yml
81-
uses: LocalStack/setup-localstack@$v0.2.0
81+
uses: LocalStack/[email protected].3
8282
with:
8383
github-token: ${{ secrets.GITHUB_TOKEN }}
8484
state-backend: ephemeral
@@ -93,7 +93,7 @@ uses: LocalStack/setup-localstack@$v0.2.0
9393
...
9494

9595
with:
96-
uses: LocalStack/setup-localstack@${{ env.GH_ACTION_VERSION }}
96+
uses: LocalStack/setup-localstack@v0.2.3
9797
with:
9898
github-token: ${{ secrets.GITHUB_TOKEN }}
9999
state-backend: ephemeral
@@ -137,7 +137,7 @@ jobs:
137137
- uses: actions/checkout@v3
138138
139139
- name: Start LocalStack
140-
uses: LocalStack/[email protected].2
140+
uses: LocalStack/[email protected].3
141141
with:
142142
image-tag: 'latest'
143143
install-awslocal: 'true'
@@ -156,7 +156,7 @@ jobs:
156156
echo "Test Execution complete!"
157157
158158
- name: Save LocalStack State
159-
uses: LocalStack/[email protected].2
159+
uses: LocalStack/[email protected].3
160160
with:
161161
state-backend: local
162162
state-action: save

0 commit comments

Comments
 (0)