Skip to content

Commit d66a7ab

Browse files
committed
chore: update deps and tools
1 parent abbafa6 commit d66a7ab

File tree

11 files changed

+497
-199
lines changed

11 files changed

+497
-199
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- image: "mysql:5.7"
3939
environment:
4040
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
41-
- image: "postgres:12.6"
41+
- image: "postgres:12.7"
4242
environment:
4343
POSTGRES_PASSWORD: "postgres"
4444
# configs/insecure-dev-pki/issued/postgres.crt
@@ -104,8 +104,8 @@ jobs:
104104
echo "$KEY" | install -m 0440 -o root -g postgres /dev/stdin /server.key
105105
exec docker-entrypoint.sh postgres -c ssl=on \
106106
--ssl_cert_file=/server.crt --ssl_key_file=/server.key
107-
- image: "nats:2.1.9"
108-
- image: "nats-streaming:0.20.0"
107+
- image: "nats:2.2.6"
108+
- image: "nats-streaming:0.21.2"
109109
command:
110110
- "--cluster_id=ci"
111111
- "--max_channels=0"

.github/workflows/CI&CD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ports:
2525
- '3306:3306'
2626
nats:
27-
image: 'nats:2.1.9'
27+
image: 'nats:2.2.6'
2828
ports:
2929
- '4222:4222'
3030
env:
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- name: Run STAN service
5050
run: |
51-
docker run -d --net=host nats-streaming:0.20.0 \
51+
docker run -d --net=host nats-streaming:0.21.2 \
5252
--cluster_id=ci \
5353
--max_channels=0 \
5454
--max_subs=0 \
@@ -76,7 +76,7 @@ jobs:
7676
-e POSTGRES_PASSWORD=postgres \
7777
-v $PWD/configs/insecure-dev-pki/issued/postgres.crt:/dev.crt \
7878
-v $PWD/configs/insecure-dev-pki/private/postgres.key:/dev.key \
79-
--entrypoint=bash postgres:12.6 -c '
79+
--entrypoint=bash postgres:12.7 -c '
8080
set -x -e -o pipefail
8181
install -m 0440 -o root -g postgres /dev.crt /server.crt
8282
install -m 0440 -o root -g postgres /dev.key /server.key

0 commit comments

Comments
 (0)