parent
557d48f3e4
commit
6dc7a5eeaf
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.7.0](https://github.com/supercharge/redis-github-action/compare/v1.6.0...v1.7.0) - 2023-08-12
|
## [1.7.0](https://github.com/supercharge/redis-github-action/compare/v1.6.0...v1.7.0) - 2023-09-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- add `redis-password` for start Redis with Authentication
|
- add `redis-password` for start Redis with Authentication
|
||||||
|
@ -8,6 +8,7 @@
|
||||||
### Updated
|
### Updated
|
||||||
- update versions in README
|
- update versions in README
|
||||||
|
|
||||||
|
|
||||||
## [1.6.0](https://github.com/supercharge/redis-github-action/compare/v1.5.0...v1.6.0) - 2023-07-27
|
## [1.6.0](https://github.com/supercharge/redis-github-action/compare/v1.5.0...v1.6.0) - 2023-07-27
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
15
README.md
15
README.md
|
@ -56,7 +56,7 @@ jobs:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
- name: Start Redis
|
- name: Start Redis
|
||||||
uses: supercharge/redis-github-action@1.6.0
|
uses: supercharge/redis-github-action@1.7.0
|
||||||
with:
|
with:
|
||||||
redis-version: ${{ matrix.redis-version }}
|
redis-version: ${{ matrix.redis-version }}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Start Redis
|
- name: Start Redis
|
||||||
uses: supercharge/redis-github-action@1.6.0
|
uses: supercharge/redis-github-action@1.7.0
|
||||||
with:
|
with:
|
||||||
redis-image: redis/redis-stack-server
|
redis-image: redis/redis-stack-server
|
||||||
redis-version: ${{ matrix.redis-version }}
|
redis-version: ${{ matrix.redis-version }}
|
||||||
|
@ -111,7 +111,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Start Redis
|
- name: Start Redis
|
||||||
uses: supercharge/redis-github-action@1.6.0
|
uses: supercharge/redis-github-action@1.7.0
|
||||||
with:
|
with:
|
||||||
redis-version: ${{ matrix.redis-version }}
|
redis-version: ${{ matrix.redis-version }}
|
||||||
redis-port: 12345
|
redis-port: 12345
|
||||||
|
@ -137,7 +137,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Start Redis
|
- name: Start Redis
|
||||||
uses: supercharge/redis-github-action@1.6.0
|
uses: supercharge/redis-github-action@1.7.0
|
||||||
with:
|
with:
|
||||||
redis-version: ${{ matrix.redis-version }}
|
redis-version: ${{ matrix.redis-version }}
|
||||||
redis-container-name: redis-auth-token-cache
|
redis-container-name: redis-auth-token-cache
|
||||||
|
@ -145,6 +145,7 @@ jobs:
|
||||||
- name: …
|
- name: …
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Remove container when exit
|
### Remove container when exit
|
||||||
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:
|
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:
|
||||||
|
|
||||||
|
@ -162,7 +163,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Start Redis
|
- name: Start Redis
|
||||||
uses: supercharge/redis-github-action@1.6.0
|
uses: supercharge/redis-github-action@1.7.0
|
||||||
with:
|
with:
|
||||||
redis-version: ${{ matrix.redis-version }}
|
redis-version: ${{ matrix.redis-version }}
|
||||||
redis-remove-container: true # false by default
|
redis-remove-container: true # false by default
|
||||||
|
@ -170,6 +171,7 @@ jobs:
|
||||||
- name: …
|
- name: …
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Using Authentication
|
### Using Authentication
|
||||||
Starting in v1.7.0, You can start the Redis with Authentication using the `redis-password` input:
|
Starting in v1.7.0, You can start the Redis with Authentication using the `redis-password` input:
|
||||||
|
|
||||||
|
@ -187,7 +189,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Start Redis
|
- name: Start Redis
|
||||||
uses: supercharge/redis-github-action@1.6.0
|
uses: supercharge/redis-github-action@1.7.0
|
||||||
with:
|
with:
|
||||||
redis-version: ${{ matrix.redis-version }}
|
redis-version: ${{ matrix.redis-version }}
|
||||||
redis-password: 'password'
|
redis-password: 'password'
|
||||||
|
@ -195,6 +197,7 @@ jobs:
|
||||||
- name: …
|
- name: …
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
MIT © [Supercharge](https://superchargejs.com)
|
MIT © [Supercharge](https://superchargejs.com)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue