Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# Label used to access the service container
db:
# Docker Hub image
image: postgres:12.7
image: postgres:15.8
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
python-version: "3.9.1"

- id: cache
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/test_reqirements.txt') }}
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"

- uses: actions/cache@v1
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ x-environment:

services:
db:
image: postgres:12.7
image: postgres:15.8
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432"
volumes:
- db-data:/var/lib/postgresql/data

redis:
image: redis:5.0.8
Expand Down Expand Up @@ -127,3 +129,4 @@ services:

volumes:
opensearch-data1:
db-data: {}
Loading