Skip to content

Commit

Permalink
Merge pull request #4563 from mozilla/dependabot/docker/node-22.2-alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored May 20, 2024
2 parents b09e6ac + fce7d5e commit 6f9e52b
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 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.1.x'
node-version: '22.2.x'
- run: npm ci
- run: npm run build-glean
- run: cp .env-dist .env
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.1
node-version: 22.2

- 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.1
node-version: 22.2

- 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.1.x'
node-version: '22.2.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.1.x'
node-version: '22.2.x'
- run: npm ci
- run: cp .env-dist .env
- run: npm run build-glean
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.1-alpine
FROM node:22.2-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:20.12-alpine
FROM node:22.2-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.1",
target: "node22.2",
packages: "external",
});
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 = "22.1.0", NPM_VERSION = "10.7.0" }
environment = { NODE_VERSION = "22.2.0", NPM_VERSION = "10.8.0" }
4 changes: 2 additions & 2 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "1.0.0",
"description": "Firefox Monitor",
"engines": {
"node": "22.1.x",
"npm": "10.7.x"
"node": "22.2.x",
"npm": "10.8.x"
},
"type": "module",
"scripts": {
Expand Down Expand Up @@ -46,8 +46,8 @@
"homepage": "https://github.com/mozilla/blurts-server",
"license": "MPL-2.0",
"volta": {
"node": "22.1.0",
"npm": "10.7.0"
"node": "22.2.0",
"npm": "10.8.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.577.0",
Expand Down

0 comments on commit 6f9e52b

Please sign in to comment.