Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #1754

Merged
merged 1 commit into from
Jan 12, 2024
Merged
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
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build static files
# Node Bullseye has npm
FROM node:20.10.0-bullseye-slim AS buildWithDevDeps
FROM node:20.11.0-bullseye-slim AS buildWithDevDeps

# Install packages, build and keep only prod packages
WORKDIR /app
Expand All @@ -9,7 +9,7 @@ COPY ./src ./src
COPY ./prisma ./prisma
RUN npm ci --ignore-scripts --no-update-notifier
RUN npm run prisma-generate
FROM node:20.10.0-bullseye-slim AS build
FROM node:20.11.0-bullseye-slim AS build

# Install packages, build and keep only prod packages
WORKDIR /app
Expand Down
12 changes: 6 additions & 6 deletions charts/quickstart-openshift/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: component
repository: https://bcgov.github.io/helm-service
version: 0.2.3
version: 0.2.4
- name: component
repository: https://bcgov.github.io/helm-service
version: 0.2.3
version: 0.2.4
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 13.2.27
version: 13.2.29
- name: component
repository: https://bcgov.github.io/helm-service
version: 0.2.3
digest: sha256:7d8e408c0246017cf5c99d35081b0f41e5aad8f28a52b721f0e55615fe803237
generated: "2023-12-31T13:27:34.901049637Z"
version: 0.2.4
digest: sha256:b32640866ba0f58c30cc2b0f031c808317e7a73efcd03b31f44da5a23e9fa1ee
generated: "2024-01-11T21:25:07.895287845Z"
8 changes: 4 additions & 4 deletions charts/quickstart-openshift/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,25 @@ appVersion: "1.16.0"
dependencies:
- name: component
condition: backend.enabled
version: 0.2.3
version: 0.2.4
repository: https://bcgov.github.io/helm-service
alias: backend

- name: component
condition: frontend.enabled
version: 0.2.3
version: 0.2.4
repository: https://bcgov.github.io/helm-service
alias: frontend

- name: postgresql
condition: bitnami-pg.enabled
version: 13.2.27
version: 13.2.29
repository: https://charts.bitnami.com/bitnami
alias: bitnami-pg

- name: component
condition: backup.enabled
version: 0.2.3
version: 0.2.4
repository: https://bcgov.github.io/helm-service
alias: backup
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build static files
# Node Bullseye has npm
FROM node:20.10.0-bullseye-slim AS build
FROM node:20.11.0-bullseye-slim AS build

# Install packages, build and keep only prod packages
WORKDIR /app
Expand Down