Skip to content

Commit bb561d8

Browse files
committed
Merge branch 'main' into edit-copy-features
2 parents 0731827 + 2a73662 commit bb561d8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Test and deploy'
22

33
env: # Keep this in sync with Dockerfile version
4-
NODE_VERSION: "22.21.0"
4+
NODE_VERSION: "22.21.1"
55

66
concurrency:
77
group: ${{ github.workflow }}-${{ ( github.ref == 'refs/heads/main' || github.ref == 'refs/heads/release' ) && format('ci-main-{0}', github.sha) || format('ci-main-{0}', github.ref) }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG VERSION=snapshot
22
ARG API_VERSION=snapshot
33

44
# Note when updating this version also update the version in the workflow files
5-
FROM node:22.21.0 AS builder
5+
FROM node:22.21.1 AS builder
66

77
ARG BASE_HREF=/
88

ci/tailormap-embed-test/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.29.2-alpine
1+
FROM nginx:1.29.3-alpine
22

33
COPY entrypoint.sh /docker-entrypoint.d
44
COPY index.html /usr/share/nginx/html

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ services:
5858

5959
db:
6060
container_name: ${COMPOSE_PROJECT_NAME}-db
61-
image: postgis/postgis:17-3.5-alpine
61+
image: postgis/postgis:18-3.6-alpine
6262
environment:
6363
POSTGRES_PASSWORD: ${TAILORMAP_DB_PASSWORD:-tailormap}
6464
POSTGRES_USER: tailormap
6565
POSTGRES_DB: tailormap
6666
PGUSER: postgres # for pg_isready
6767
volumes:
68-
- db:/var/lib/postgresql/data
68+
- db:/var/lib/postgresql
6969
healthcheck:
7070
test: 'pg_isready -U tailormap'
7171
restart: unless-stopped
@@ -124,7 +124,7 @@ services:
124124

125125
prometheus:
126126
container_name: ${COMPOSE_PROJECT_NAME}-prometheus
127-
image: prom/prometheus:v3.7.2
127+
image: prom/prometheus:v3.7.3
128128
profiles:
129129
- prometheus
130130
environment:

0 commit comments

Comments
 (0)