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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

services:
db:
image: postgres:18.3
image: postgres:18.3@sha256:7e32e9833a6fb1c92c32552794cb6ed569d51b445a54907d35fc112ef39684db
# Health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=/opt/uv-cache,uid=1000,gid=1000 \
uv sync --frozen --no-install-project --no-dev

# ─── Node / frontend asset build ─────────────────────────────────────────────
FROM node:24-slim AS node_builder
FROM node:24-slim@sha256:3638d9a6fe4030bd716be989438248074489337ba3275657f93595428be4fc03 AS node_builder
COPY . /src
WORKDIR /src
ENV NODE_ENV=production
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ x-extra-hosts: &default-extra-hosts

services:
db:
image: postgres:18.3
image: postgres:18.3@sha256:7e32e9833a6fb1c92c32552794cb6ed569d51b445a54907d35fc112ef39684db
environment:
POSTGRES_PASSWORD: postgres # pragma: allowlist secret
ports:
Expand Down Expand Up @@ -68,7 +68,7 @@ services:
extra_hosts: *default-extra-hosts

watch:
image: node:24.14.0
image: node:24.14.0@sha256:5a593d74b632d1c6f816457477b6819760e13624455d587eef0fa418c8d0777b
working_dir: /src
command: >
/bin/bash -c './webpack_dev_server.sh --install'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@
"normalize-url": "^9.0.0"
},
"devDependencies": {
"eslint-plugin-react-hooks": "^5.2.0"
"eslint-plugin-react-hooks": "5.2.0"
}
}
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5940,7 +5940,7 @@ __metadata:
languageName: node
linkType: hard

"eslint-plugin-react-hooks@npm:^5.2.0":
"eslint-plugin-react-hooks@npm:5.2.0":
version: 5.2.0
resolution: "eslint-plugin-react-hooks@npm:5.2.0"
peerDependencies:
Expand Down Expand Up @@ -9543,7 +9543,7 @@ __metadata:
eslint-plugin-flowtype: ^8.0.3
eslint-plugin-mocha: ^6.3.0
eslint-plugin-react: ^7.19.0
eslint-plugin-react-hooks: ^5.2.0
eslint-plugin-react-hooks: 5.2.0
expose-loader: ^5.0.0
express: ^5.0.0
fetch-mock: ^12.0.0
Expand Down
Loading