Skip to content

Commit 28024dd

Browse files
committed
test Redis v7
1 parent e7bb102 commit 28024dd

7 files changed

+26
-11
lines changed

.github/workflows/authentication.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
redis-version: [4, 5, 6]
10+
redis-version: [5, 6, 7]
1111

1212
name: Start Redis Server v${{ matrix.redis-version }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616

1717
- name: Start Redis Server
1818
uses: ./
1919
with:
2020
redis-version: ${{ matrix.redis-version }}
21-
redis-password: password
21+
redis-password: password

.github/workflows/container-name.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
redis-version: [4, 5, 6]
10+
redis-version: [5, 6, 7]
1111

1212
name: Start Redis Server v${{ matrix.redis-version }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Start Redis Server
1818
uses: ./

.github/workflows/custom-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Start Redis Stack Server v${{ matrix.redis-version }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616

1717
- name: Start Redis Stack Server
1818
uses: ./

.github/workflows/custom-port.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
redis-version: [4, 5, 6]
10+
redis-version: [5, 6, 7]
1111

1212
name: Start Redis Server v${{ matrix.redis-version }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616

1717
- name: Start Redis Server
1818
uses: ./

.github/workflows/fallback-to-latest-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Start Redis Server with latest Redis version
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Start Redis Server
1515
uses: ./

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
redis-version: [4, 5, 6]
10+
redis-version: [5, 6, 7]
1111

1212
name: Start Redis Server v${{ matrix.redis-version }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616

1717
- name: Start Redis Server
1818
uses: ./

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [1.7.1](https://github.com/supercharge/redis-github-action/compare/v1.7.0...v1.7.1) - 2023-12-12
4+
5+
### Added
6+
- add Redis 7 to testing
7+
8+
### Updated
9+
- bump GitHub Actions service `actions/checkout` to version `v4`
10+
11+
### Removed
12+
- remove Redis 4 from testing
13+
14+
### Fixed
15+
- 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
16+
17+
318
## [1.7.0](https://github.com/supercharge/redis-github-action/compare/v1.6.0...v1.7.0) - 2023-09-04
419

520
### Added

0 commit comments

Comments
 (0)