Skip to content

Commit

Permalink
test Redis v7
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuspoehls committed Dec 12, 2023
1 parent e7bb102 commit 28024dd
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/authentication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/container-name.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/custom-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/custom-port.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fallback-to-latest-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ./
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 28024dd

Please sign in to comment.