Skip to content

Commit

Permalink
build(deps): bump node from 20.9.0-alpine to 20.10.0-alpine (#887)
Browse files Browse the repository at this point in the history
* build(deps): bump node from 20.9.0-alpine to 20.10.0-alpine

Bumps node from 20.9.0-alpine to 20.10.0-alpine.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump version in GitHub workflow

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fmrsabino <[email protected]>
  • Loading branch information
dependabot[bot] and fmrsabino authored Dec 4, 2023
1 parent f237af7 commit 3617038
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.9.x'
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run format-check
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.9.x'
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run lint-check
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.9.x'
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run build
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# BUILD CONTAINER
#
FROM node:20.9.0 as base
FROM node:20.10.0 as base
ENV NODE_ENV production
WORKDIR /app
COPY --chown=node:node .yarn/releases ./.yarn/releases
Expand All @@ -16,7 +16,7 @@ RUN yarn run build
#
# PRODUCTION CONTAINER
#
FROM node:20.9.0-alpine as production
FROM node:20.10.0-alpine as production
USER node

ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ It provides UI-oriented mappings and data structures for easier integration with

## Requirements

- Node 20.9.0 – https://nodejs.org/en/
- Node 20.10.0 – https://nodejs.org/en/
- Docker Compose – https://docs.docker.com/compose/

## Installation
Expand Down

0 comments on commit 3617038

Please sign in to comment.