Skip to content

Commit

Permalink
fix(node): downgrade node from v21 to v20
Browse files Browse the repository at this point in the history
  • Loading branch information
ismarslomic committed Mar 10, 2024
1 parent 92f9313 commit 10d47f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
uses: actions/checkout@v4

# Set version of node to use
- name: Use Node.js 21
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 21.x
node-version: 20.x

# This command is similar to npm install, except it's meant to be used in
# automated environments such as test platforms, continuous integration,
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
uses: actions/checkout@v4

# Set version of node to use
- name: Use Node.js 21
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 21.x
node-version: 20.x

# This command is similar to npm install, except it's meant to be used in
# automated environments such as test platforms, continuous integration,
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use offical Node.js image. The image uses Apline Linux
FROM node:21.7.0-alpine
FROM node:20.11.1-bookworm-slim

# Build-time metadata as defined at https://github.com/opencontainers/image-spec/blob/master/annotations.md
ARG BUILD_DATE
Expand Down

0 comments on commit 10d47f5

Please sign in to comment.