Skip to content

Commit

Permalink
Merge branch 'main' into MNTOR-3074
Browse files Browse the repository at this point in the history
  • Loading branch information
mansaj authored Apr 5, 2024
2 parents c114145 + 86a08e4 commit d4170a9
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ version: 2.1
executors:
node:
docker:
- image: cimg/node:20.11.0
- image: cimg/node:20.12.0
auth:
username: $DOCKER_USER
password: $DOCKER_PASS

node_with_python:
docker:
- image: cimg/node:20.11.0
- image: cimg/node:20.12.0
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand All @@ -35,7 +35,7 @@ executors:
description: "Which cimg/postgres tag to use"
type: string
docker:
- image: cimg/node:20.11
- image: cimg/node:20.12
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
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: 20.11
node-version: 20.12

- 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: 20.11
node-version: 20.12

- name: Install dependencies
run: npm ci
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: '20.11.x'
node-version: '20.12.x'
- run: npm ci
- run: cp .env-dist .env
- 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:20.11-alpine
FROM node:20.12-alpine

RUN addgroup -g 10001 app && \
adduser -D -G app -h /app -u 10001 app
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; cp .env-dist .env; npm run build-storybook"

environment = { NODE_VERSION = "20.11.0", NPM_VERSION = "10.2.4" }
environment = { NODE_VERSION = "20.12.0", NPM_VERSION = "10.2.4" }
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "Firefox Monitor",
"engines": {
"node": "20.11.x",
"node": "20.12.x",
"npm": "10.2.x"
},
"type": "module",
Expand Down Expand Up @@ -35,7 +35,7 @@
"homepage": "https://github.com/mozilla/blurts-server",
"license": "MPL-2.0",
"volta": {
"node": "20.11.0",
"node": "20.12.0",
"npm": "10.2.4"
},
"dependencies": {
Expand Down

0 comments on commit d4170a9

Please sign in to comment.