Skip to content

Commit c8b7e34

Browse files
committed
Merge branch 'main' into remove-container-on-exit
2 parents 90c206d + bc274cb commit c8b7e34

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.8.1](https://github.com/supercharge/redis-github-action/compare/v1.8.0...v1.8.1) - 2025-11-12
4+
5+
### Fixed
6+
- change Docker tag from `docker:stable` to `docker:latest`
7+
8+
39
## [1.8.0](https://github.com/supercharge/redis-github-action/compare/v1.7.0...v1.8.0) - 2023-12-12
410

511
### Added

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker:stable
1+
FROM docker:latest
22
COPY start-redis.sh /start-redis.sh
33
RUN chmod +x /start-redis.sh
4-
ENTRYPOINT ["/start-redis.sh"]
4+
ENTRYPOINT ["/start-redis.sh"]

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
node-version: ${{ matrix.node-version }}
5757

5858
- name: Start Redis
59-
uses: supercharge/redis-github-action@1.7.0
59+
uses: supercharge/redis-github-action@1.8.1
6060
with:
6161
redis-version: ${{ matrix.redis-version }}
6262

@@ -85,7 +85,7 @@ jobs:
8585
8686
steps:
8787
- name: Start Redis
88-
uses: supercharge/redis-github-action@1.7.0
88+
uses: supercharge/redis-github-action@1.8.1
8989
with:
9090
redis-image: redis/redis-stack-server
9191
redis-version: ${{ matrix.redis-version }}
@@ -111,7 +111,7 @@ jobs:
111111
112112
steps:
113113
- name: Start Redis
114-
uses: supercharge/redis-github-action@1.7.0
114+
uses: supercharge/redis-github-action@1.8.1
115115
with:
116116
redis-version: ${{ matrix.redis-version }}
117117
redis-port: 12345
@@ -137,7 +137,7 @@ jobs:
137137
138138
steps:
139139
- name: Start Redis
140-
uses: supercharge/redis-github-action@1.7.0
140+
uses: supercharge/redis-github-action@1.8.1
141141
with:
142142
redis-version: ${{ matrix.redis-version }}
143143
redis-container-name: redis-auth-token-cache
@@ -163,7 +163,7 @@ jobs:
163163
164164
steps:
165165
- name: Start Redis
166-
uses: supercharge/redis-github-action@1.7.0
166+
uses: supercharge/redis-github-action@1.8.1
167167
with:
168168
redis-version: ${{ matrix.redis-version }}
169169
redis-password: 'password'

0 commit comments

Comments
 (0)