diff --git a/CHANGELOG.md b/CHANGELOG.md index c35c7a6..373c08c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # 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 - add `redis-password` for start Redis with Authentication @@ -8,6 +8,7 @@ ### Updated - update versions in README + ## [1.6.0](https://github.com/supercharge/redis-github-action/compare/v1.5.0...v1.6.0) - 2023-07-27 ### Added diff --git a/README.md b/README.md index 00a1ecb..5f4ba42 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Start Redis - uses: supercharge/redis-github-action@1.6.0 + uses: supercharge/redis-github-action@1.7.0 with: redis-version: ${{ matrix.redis-version }} @@ -85,7 +85,7 @@ jobs: steps: - name: Start Redis - uses: supercharge/redis-github-action@1.6.0 + uses: supercharge/redis-github-action@1.7.0 with: redis-image: redis/redis-stack-server redis-version: ${{ matrix.redis-version }} @@ -111,7 +111,7 @@ jobs: steps: - name: Start Redis - uses: supercharge/redis-github-action@1.6.0 + uses: supercharge/redis-github-action@1.7.0 with: redis-version: ${{ matrix.redis-version }} redis-port: 12345 @@ -137,7 +137,7 @@ jobs: steps: - name: Start Redis - uses: supercharge/redis-github-action@1.6.0 + uses: supercharge/redis-github-action@1.7.0 with: redis-version: ${{ matrix.redis-version }} redis-container-name: redis-auth-token-cache @@ -145,6 +145,7 @@ jobs: - name: … ``` + ### 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: @@ -162,7 +163,7 @@ jobs: steps: - name: Start Redis - uses: supercharge/redis-github-action@1.6.0 + uses: supercharge/redis-github-action@1.7.0 with: redis-version: ${{ matrix.redis-version }} redis-remove-container: true # false by default @@ -170,6 +171,7 @@ jobs: - name: … ``` + ### Using Authentication Starting in v1.7.0, You can start the Redis with Authentication using the `redis-password` input: @@ -187,7 +189,7 @@ jobs: steps: - name: Start Redis - uses: supercharge/redis-github-action@1.6.0 + uses: supercharge/redis-github-action@1.7.0 with: redis-version: ${{ matrix.redis-version }} redis-password: 'password' @@ -195,6 +197,7 @@ jobs: - name: … ``` + ## License MIT © [Supercharge](https://superchargejs.com)