Skip to content

Commit 538245c

Browse files
committed
Fix bad env usage in gha workflows
1 parent 499789f commit 538245c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
services:
2525
postgres:
26-
image: postgres:${{ env.POSTGRES_VERSION }}
26+
image: postgres:18
2727
env:
2828
POSTGRES_PASSWORD: postgres
2929
POSTGRES_DB: streamsource_test
@@ -36,7 +36,7 @@ jobs:
3636
- 5432:5432
3737

3838
redis:
39-
image: redis:${{ env.REDIS_VERSION }}
39+
image: redis:8
4040
options: >-
4141
--health-cmd "redis-cli ping"
4242
--health-interval 10s

.github/workflows/pr-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
services:
2727
postgres:
28-
image: postgres:${{ env.POSTGRES_VERSION }}
28+
image: postgres:18
2929
env:
3030
POSTGRES_PASSWORD: postgres
3131
POSTGRES_DB: streamsource_test
@@ -38,7 +38,7 @@ jobs:
3838
- 5432:5432
3939

4040
redis:
41-
image: redis:${{ env.REDIS_VERSION }}
41+
image: redis:8
4242
options: >-
4343
--health-cmd "redis-cli ping"
4444
--health-interval 10s

0 commit comments

Comments
 (0)