Skip to content

Commit

Permalink
chore(deps): update dependency node
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored and renovate[bot] committed Feb 15, 2022
1 parent e52519c commit 84aa7f0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .docker-hub/print/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM node:16.13.1@sha256:32605ead97ed57bd39a8a7b0e919240e1a3218974dfc6965e61b54a801753131 AS build-stage
FROM node:16.14.0@sha256:fd86131ddf8e0faa8ba7a3e49b6bf571745946e663e4065f3bff0a07204c1dde AS build-stage

COPY common /common

Expand All @@ -10,7 +10,7 @@ RUN npm ci
RUN npm run build

# production stage
FROM node:16.13.1@sha256:32605ead97ed57bd39a8a7b0e919240e1a3218974dfc6965e61b54a801753131 AS production-stage
FROM node:16.14.0@sha256:fd86131ddf8e0faa8ba7a3e49b6bf571745946e663e4065f3bff0a07204c1dde AS production-stage
WORKDIR /app

COPY --from=build-stage /app/node_modules ./node_modules
Expand Down
2 changes: 1 addition & 1 deletion .docker-hub/worker-print-puppeteer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.13.1-buster-slim@sha256:230c2b1d462d7dcb61cb7141b16b19aba1844a3679ee5d99e2d94a327cad85ea
FROM node:16.14.0-buster-slim@sha256:64dc41bcf5e9048aa1b9a6efe3af68631720e6b76e98f281a77d305e898d3610

RUN apt-get update \
&& apt-get install -y wget gnupg \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16.13.1'
node-version: '16.14.0'

- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed # renovate: tag=v2
with:
Expand All @@ -89,7 +89,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16.13.1'
node-version: '16.14.0'

- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed # renovate: tag=v2
with:
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16.13.1'
node-version: '16.14.0'

- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed # renovate: tag=v2
with:
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16.13.1'
node-version: '16.14.0'

- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed # renovate: tag=v2
with:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"

services:
frontend:
image: node:16.13.1@sha256:32605ead97ed57bd39a8a7b0e919240e1a3218974dfc6965e61b54a801753131
image: node:16.14.0@sha256:fd86131ddf8e0faa8ba7a3e49b6bf571745946e663e4065f3bff0a07204c1dde
container_name: 'ecamp3-frontend'
ports:
- '3000:3000'
Expand Down Expand Up @@ -105,7 +105,7 @@ services:
entrypoint: ./docker-setup.sh

print:
image: node:16.13.1@sha256:32605ead97ed57bd39a8a7b0e919240e1a3218974dfc6965e61b54a801753131
image: node:16.14.0@sha256:fd86131ddf8e0faa8ba7a3e49b6bf571745946e663e4065f3bff0a07204c1dde
container_name: 'ecamp3-print'
ports:
- '3003:3003'
Expand Down
2 changes: 1 addition & 1 deletion workers/print-puppeteer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Initially based upon:
# https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker

FROM node:16.13.1-buster-slim@sha256:230c2b1d462d7dcb61cb7141b16b19aba1844a3679ee5d99e2d94a327cad85ea
FROM node:16.14.0-buster-slim@sha256:64dc41bcf5e9048aa1b9a6efe3af68631720e6b76e98f281a77d305e898d3610

RUN apt-get update \
&& apt-get install -y wget gnupg \
Expand Down

0 comments on commit 84aa7f0

Please sign in to comment.