Skip to content

Commit

Permalink
fix(deps): update redis docker tag to v7.0.9 (#1247)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] and github-actions[bot] authored Mar 16, 2023
1 parent 7b864bf commit 9378ff4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
runs-on: ubuntu-latest
services:
redis:
image: redis:7.0.8
image: redis:7.0.9
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updatesnapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
services:
redis:
image: redis:7.0.8
image: redis:7.0.9
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
Expand Down
8 changes: 4 additions & 4 deletions test/integration/commands/__snapshots__/info.js.snap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`info should return default info with CRLF 1`] = `"redis_version:7.0.8"`;
exports[`info should return default info with CRLF 1`] = `"redis_version:7.0.9"`;

exports[`info should return enough info to be useful 1`] = `
[
Expand Down Expand Up @@ -411,11 +411,11 @@ exports[`info should return enough info to be useful 1`] = `
`;

exports[`info should return the Redis version number used during end-to-end testing 1`] = `
"redis_version:7.0.8
"redis_version:7.0.9
"
`;

exports[`infoBuffer should return default info with CRLF 1`] = `"redis_version:7.0.8"`;
exports[`infoBuffer should return default info with CRLF 1`] = `"redis_version:7.0.9"`;

exports[`infoBuffer should return enough info to be useful 1`] = `
[
Expand Down Expand Up @@ -826,6 +826,6 @@ exports[`infoBuffer should return enough info to be useful 1`] = `
`;

exports[`infoBuffer should return the Redis version number used during end-to-end testing 1`] = `
"redis_version:7.0.8
"redis_version:7.0.9
"
`;
4 changes: 2 additions & 2 deletions test/integration/commands/__snapshots__/lolwut.js.snap
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`lolwut should return Redis version by default 1`] = `
"Redis ver. 7.0.8
"Redis ver. 7.0.9
"
`;

exports[`lolwutBuffer should return Redis version by default 1`] = `Buffer<52 65 64 69 73 20 76 65 72 2e 20 37 2e 30 2e 38 0a>`;
exports[`lolwutBuffer should return Redis version by default 1`] = `Buffer<52 65 64 69 73 20 76 65 72 2e 20 37 2e 30 2e 39 0a>`;

0 comments on commit 9378ff4

Please sign in to comment.