diff --git a/.github/workflows/authentication.yml b/.github/workflows/authentication.yml index 1776734..2384085 100644 --- a/.github/workflows/authentication.yml +++ b/.github/workflows/authentication.yml @@ -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 \ No newline at end of file + redis-password: password diff --git a/.github/workflows/container-name.yml b/.github/workflows/container-name.yml index 5a0034a..f546db1 100644 --- a/.github/workflows/container-name.yml +++ b/.github/workflows/container-name.yml @@ -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: ./ diff --git a/.github/workflows/custom-image.yml b/.github/workflows/custom-image.yml index 5f6d4e7..e6fed2e 100644 --- a/.github/workflows/custom-image.yml +++ b/.github/workflows/custom-image.yml @@ -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: ./ diff --git a/.github/workflows/custom-port.yml b/.github/workflows/custom-port.yml index cf4ecef..d44a5b6 100644 --- a/.github/workflows/custom-port.yml +++ b/.github/workflows/custom-port.yml @@ -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: ./ diff --git a/.github/workflows/fallback-to-latest-version.yml b/.github/workflows/fallback-to-latest-version.yml index 9abdfcc..3341611 100644 --- a/.github/workflows/fallback-to-latest-version.yml +++ b/.github/workflows/fallback-to-latest-version.yml @@ -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: ./ diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ca458a3..35d5ccc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: ./ diff --git a/CHANGELOG.md b/CHANGELOG.md index 373c08c..9a585d6 100644 --- a/CHANGELOG.md +++ b/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