Skip to content

Commit

Permalink
Merge branch 'main' into mntor-3388
Browse files Browse the repository at this point in the history
  • Loading branch information
flozia authored Jul 26, 2024
2 parents dcc316b + 99f3a68 commit 3229589
Show file tree
Hide file tree
Showing 19 changed files with 380 additions and 353 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.4.x'
node-version: '22.5.x'
- run: npm ci
- run: npm run build-glean
# Verify that the build (incl. type-checking) succeeds
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.4
node-version: 22.5.x

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.4
node-version: 22.5.x

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.4.x'
node-version: '22.5.x'
- run: npm ci
- run: npm run build-glean
- run: npm run build-nimbus
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.4.x'
node-version: '22.5.x'
- run: npm ci
- run: npm run build-glean
- run: npm test
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.4-alpine
FROM node:22.5-alpine

RUN addgroup -g 10001 app && \
adduser -D -G app -h /app -u 10001 app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cloudrun
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.4-alpine
FROM node:22.5-alpine

RUN addgroup -g 10001 app && \
adduser -D -G app -h /app -u 10001 app
Expand Down
2 changes: 1 addition & 1 deletion esbuild.cronjobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ build({
format: "esm",
outdir: "dist/scripts/cronjobs/",
sourcemap: true,
target: "node22.4",
target: "node22.5",
packages: "external",
});
2 changes: 1 addition & 1 deletion locales/en-GB/landing-all.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ landing-all-hero-lead = We scan data breaches to see if your data has been leake
landing-all-hero-emailform-input-placeholder = [email protected]
landing-all-hero-emailform-input-label = Enter your email address to check for data breach exposures.
landing-all-hero-emailform-submit-label = Get free scan
landing-all-hero-emailform-submit-sign-in-label = Sign in to get free scan
landing-all-hero-emailform-submit-sign-up-label = Sign up to get free scan
# This is a label underneath a big number "14" - it's an image that demos Monitor.
landing-all-hero-image-chart-label = exposures
Expand Down
2 changes: 1 addition & 1 deletion locales/es-AR/landing-all.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ landing-all-hero-lead = Analizamos las filtraciones de datos para ver si tus dat
landing-all-hero-emailform-input-placeholder = [email protected]
landing-all-hero-emailform-input-label = Ingresá tu dirección de correo electrónico para verificar si hay exposiciones a filtraciones de datos.
landing-all-hero-emailform-submit-label = Hacé un escaneo gratuito
landing-all-hero-emailform-submit-sign-up-label = Registrate para obtener un escaneo gratuito
landing-all-hero-emailform-submit-sign-up-label = Registrate para escanear gratis
# This is a label underneath a big number "14" - it's an image that demos Monitor.
landing-all-hero-image-chart-label = exposiciones
Expand Down
2 changes: 1 addition & 1 deletion locales/tr/landing-all.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ landing-all-hero-lead = Verilerinizin sızdırılıp sızdırılmadığını gö
landing-all-hero-emailform-input-placeholder = [email protected]
landing-all-hero-emailform-input-label = Veri ihlali risklerini kontrol etmek için e-posta adresinizi yazın.
landing-all-hero-emailform-submit-label = Ücretsiz taramayı başlat
landing-all-hero-emailform-submit-sign-in-label = Ücretsiz tarama için giriş yapın
landing-all-hero-emailform-submit-sign-up-label = Ücretsiz tarama için kaydolun
# This is a label underneath a big number "14" - it's an image that demos Monitor.
landing-all-hero-image-chart-label = veri ihlali
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# Default build command.
command = "npm ci; npm run build-storybook"

environment = { NODE_VERSION = "22.4.1", NPM_VERSION = "10.8.1" }
environment = { NODE_VERSION = "22.5.1", NPM_VERSION = "10.8.1" }
Loading

0 comments on commit 3229589

Please sign in to comment.