test Redis v7
parent
e7bb10277b
commit
28024dd445
|
@ -7,15 +7,15 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
redis-version: [4, 5, 6]
|
||||
redis-version: [5, 6, 7]
|
||||
|
||||
name: Start Redis Server v${{ matrix.redis-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Start Redis Server
|
||||
uses: ./
|
||||
with:
|
||||
redis-version: ${{ matrix.redis-version }}
|
||||
redis-password: password
|
||||
redis-password: password
|
||||
|
|
|
@ -7,12 +7,12 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
redis-version: [4, 5, 6]
|
||||
redis-version: [5, 6, 7]
|
||||
|
||||
name: Start Redis Server v${{ matrix.redis-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Start Redis Server
|
||||
uses: ./
|
||||
|
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
name: Start Redis Stack Server v${{ matrix.redis-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Start Redis Stack Server
|
||||
uses: ./
|
||||
|
|
|
@ -7,12 +7,12 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
redis-version: [4, 5, 6]
|
||||
redis-version: [5, 6, 7]
|
||||
|
||||
name: Start Redis Server v${{ matrix.redis-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Start Redis Server
|
||||
uses: ./
|
||||
|
|
|
@ -9,7 +9,7 @@ jobs:
|
|||
name: Start Redis Server with latest Redis version
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Start Redis Server
|
||||
uses: ./
|
||||
|
|
|
@ -7,12 +7,12 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
redis-version: [4, 5, 6]
|
||||
redis-version: [5, 6, 7]
|
||||
|
||||
name: Start Redis Server v${{ matrix.redis-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Start Redis Server
|
||||
uses: ./
|
||||
|
|
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,5 +1,20 @@
|
|||
# Changelog
|
||||
|
||||
## [1.7.1](https://github.com/supercharge/redis-github-action/compare/v1.7.0...v1.7.1) - 2023-12-12
|
||||
|
||||
### Added
|
||||
- add Redis 7 to testing
|
||||
|
||||
### Updated
|
||||
- bump GitHub Actions service `actions/checkout` to version `v4`
|
||||
|
||||
### Removed
|
||||
- remove Redis 4 from testing
|
||||
|
||||
### Fixed
|
||||
- fix position of adding the Docker `--rm` flag to be added before starting the Redis server, because the `--rm` flag would be passed to the Redis server instead of Docker
|
||||
|
||||
|
||||
## [1.7.0](https://github.com/supercharge/redis-github-action/compare/v1.6.0...v1.7.0) - 2023-09-04
|
||||
|
||||
### Added
|
||||
|
|
Loading…
Reference in New Issue