@@ -146,8 +146,8 @@ jobs:
146146` ` `
147147
148148
149- # ## Remove container when exit
150- Starting in v1.6 .0, when running this action on a self-hosted runner, it’s helpful to remove the container so its name won’t conflict :
149+ # ## Using Authentication
150+ Starting in v1.7 .0, You can start the Redis with Authentication using the `redis-password` input :
151151
152152` ` ` yaml
153153name: Run tests
@@ -166,14 +166,14 @@ jobs:
166166 uses: supercharge/redis-github-action@1.8.1
167167 with:
168168 redis-version: ${{ matrix.redis-version }}
169- redis-remove-container: true # false by default
169+ redis-password: 'password'
170170
171171 - name: …
172172` ` `
173173
174174
175- # ## Using Authentication
176- Starting in v1.7 .0, You can start the Redis with Authentication using the `redis-password` input :
175+ # ## Remove Docker Container on Exit
176+ Starting in v1.9 .0, when running this action on a self-hosted runner, it’s helpful to remove the container so its name won’t conflict :
177177
178178` ` ` yaml
179179name: Run tests
@@ -189,10 +189,10 @@ jobs:
189189
190190 steps:
191191 - name: Start Redis
192- uses: supercharge/redis-github-action@1.8.1
192+ uses: supercharge/redis-github-action@1.7.0
193193 with:
194194 redis-version: ${{ matrix.redis-version }}
195- redis-password: 'password'
195+ redis-remove-container-on-exit: true # false by default
196196
197197 - name: …
198198` ` `
0 commit comments