Skip to content

Commit 6dc7a5e

Browse files
committed
prepare 1.7.0
1 parent 557d48f commit 6dc7a5e

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Changelog
22

3-
## [1.7.0](https://github.com/supercharge/redis-github-action/compare/v1.6.0...v1.7.0) - 2023-08-12
3+
## [1.7.0](https://github.com/supercharge/redis-github-action/compare/v1.6.0...v1.7.0) - 2023-09-04
44

55
### Added
66
- add `redis-password` for start Redis with Authentication
77

88
### Updated
99
- update versions in README
1010

11+
1112
## [1.6.0](https://github.com/supercharge/redis-github-action/compare/v1.5.0...v1.6.0) - 2023-07-27
1213

1314
### Added

README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
node-version: ${{ matrix.node-version }}
5757

5858
- name: Start Redis
59-
uses: supercharge/redis-github-action@1.6.0
59+
uses: supercharge/redis-github-action@1.7.0
6060
with:
6161
redis-version: ${{ matrix.redis-version }}
6262

@@ -85,7 +85,7 @@ jobs:
8585
8686
steps:
8787
- name: Start Redis
88-
uses: supercharge/redis-github-action@1.6.0
88+
uses: supercharge/redis-github-action@1.7.0
8989
with:
9090
redis-image: redis/redis-stack-server
9191
redis-version: ${{ matrix.redis-version }}
@@ -111,7 +111,7 @@ jobs:
111111
112112
steps:
113113
- name: Start Redis
114-
uses: supercharge/redis-github-action@1.6.0
114+
uses: supercharge/redis-github-action@1.7.0
115115
with:
116116
redis-version: ${{ matrix.redis-version }}
117117
redis-port: 12345
@@ -137,14 +137,15 @@ jobs:
137137
138138
steps:
139139
- name: Start Redis
140-
uses: supercharge/redis-github-action@1.6.0
140+
uses: supercharge/redis-github-action@1.7.0
141141
with:
142142
redis-version: ${{ matrix.redis-version }}
143143
redis-container-name: redis-auth-token-cache
144144
145145
- name: …
146146
```
147147

148+
148149
### Remove container when exit
149150
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:
150151

@@ -162,14 +163,15 @@ jobs:
162163
163164
steps:
164165
- name: Start Redis
165-
uses: supercharge/redis-github-action@1.6.0
166+
uses: supercharge/redis-github-action@1.7.0
166167
with:
167168
redis-version: ${{ matrix.redis-version }}
168169
redis-remove-container: true # false by default
169170
170171
- name: …
171172
```
172173

174+
173175
### Using Authentication
174176
Starting in v1.7.0, You can start the Redis with Authentication using the `redis-password` input:
175177

@@ -187,14 +189,15 @@ jobs:
187189
188190
steps:
189191
- name: Start Redis
190-
uses: supercharge/redis-github-action@1.6.0
192+
uses: supercharge/redis-github-action@1.7.0
191193
with:
192194
redis-version: ${{ matrix.redis-version }}
193195
redis-password: 'password'
194196
195197
- name: …
196198
```
197199

200+
198201
## License
199202
MIT © [Supercharge](https://superchargejs.com)
200203

0 commit comments

Comments
 (0)