Skip to content

Commit

Permalink
chore: update deps and tools
Browse files Browse the repository at this point in the history
  • Loading branch information
powerman committed May 29, 2021
1 parent abbafa6 commit d66a7ab
Show file tree
Hide file tree
Showing 11 changed files with 497 additions and 199 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- image: "mysql:5.7"
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
- image: "postgres:12.6"
- image: "postgres:12.7"
environment:
POSTGRES_PASSWORD: "postgres"
# configs/insecure-dev-pki/issued/postgres.crt
Expand Down Expand Up @@ -104,8 +104,8 @@ jobs:
echo "$KEY" | install -m 0440 -o root -g postgres /dev/stdin /server.key
exec docker-entrypoint.sh postgres -c ssl=on \
--ssl_cert_file=/server.crt --ssl_key_file=/server.key
- image: "nats:2.1.9"
- image: "nats-streaming:0.20.0"
- image: "nats:2.2.6"
- image: "nats-streaming:0.21.2"
command:
- "--cluster_id=ci"
- "--max_channels=0"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI&CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ports:
- '3306:3306'
nats:
image: 'nats:2.1.9'
image: 'nats:2.2.6'
ports:
- '4222:4222'
env:
Expand All @@ -48,7 +48,7 @@ jobs:
steps:
- name: Run STAN service
run: |
docker run -d --net=host nats-streaming:0.20.0 \
docker run -d --net=host nats-streaming:0.21.2 \
--cluster_id=ci \
--max_channels=0 \
--max_subs=0 \
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
-e POSTGRES_PASSWORD=postgres \
-v $PWD/configs/insecure-dev-pki/issued/postgres.crt:/dev.crt \
-v $PWD/configs/insecure-dev-pki/private/postgres.key:/dev.key \
--entrypoint=bash postgres:12.6 -c '
--entrypoint=bash postgres:12.7 -c '
set -x -e -o pipefail
install -m 0440 -o root -g postgres /dev.crt /server.crt
install -m 0440 -o root -g postgres /dev.key /server.key
Expand Down
Loading

0 comments on commit d66a7ab

Please sign in to comment.