Skip to content

Commit 6151891

Browse files
committed
Fix Docker version error in Redis GHA
The previous version of the local action failed due to: ``` Error response from daemon: client version 1.40 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version ``` so this commit upgrades the `docker` base image version. While we're at it, also update the `redis` base image version we use inside the `docker` docker container.
1 parent c515290 commit 6151891

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/redis/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker:stable
1+
FROM docker:latest
22
RUN apk add --update bash
33
COPY run-redis.sh /run-redis.sh
44
ENTRYPOINT ["/run-redis.sh"]

.github/actions/redis/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
redis-version:
99
description: 'The version of Redis to use'
1010
required: false
11-
default: '6.2.5'
11+
default: '8.6.0'
1212

1313
runs:
1414
using: 'docker'

0 commit comments

Comments
 (0)