Skip to content

Commit

Permalink
fix: update node to 20.12.0
Browse files Browse the repository at this point in the history
fix: update semantic-release-replace-plugin

fix: update semantic-release-replace-plugin
  • Loading branch information
wojtekzyla committed Apr 4, 2024
1 parent f35c614 commit b17c14e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
cache-to: type=inline
- uses: actions/setup-node@v3
with:
node-version: "18.20.0"
node-version: "20.12.0"

build-backend:
name: build-backend
Expand Down Expand Up @@ -128,4 +128,4 @@ jobs:
cache-to: type=inline
- uses: actions/setup-node@v3
with:
node-version: "18.20.0"
node-version: "20.12.0"
2 changes: 1 addition & 1 deletion .github/workflows/ci-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
matrix:
node-version:
- 18.20.0
- 20.12.0
steps:
- uses: actions/checkout@v4
- name: Set Node.js ${{ matrix.node-version }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
cache-to: type=inline
- uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "20.12.0"

build-backend:
name: build-backend
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
cache-to: type=inline
- uses: actions/setup-node@v3
with:
node-version: "18.20.0"
node-version: "20.12.0"
release:
name: Release
needs: [build-frontend, build-backend]
Expand All @@ -138,7 +138,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: "18.20.0"
node-version: "20.12.0"
- name: Semantic Release
id: version
uses: cycjimmy/semantic-release-action@v4.0.0
Expand All @@ -147,7 +147,7 @@ jobs:
extra_plugins: |
@semantic-release/exec
@semantic-release/git
@google/semantic-release-replace-plugin@1.2.0
semantic-release-replace-plugin@1.2.7
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_ADMIN }}

2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
[
"@semantic-release/commit-analyzer",
[
"@google/semantic-release-replace-plugin",
"semantic-release-replace-plugin",
{
"replacements": [
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.20-alpine3.18 as build-step
FROM node:20.12.0-alpine as build-step
WORKDIR /frontend
ENV PATH /frontend/node_modules/.bin:$PATH
COPY package.json yarn.lock lerna.json ./
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"packages/*"
],
"engines": {
"node": "18.20.0"
"node": "20.12.0"
},
"dependencies": {
"cors": "^2.8.5",
Expand Down
2 changes: 1 addition & 1 deletion frontend/packages/manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@
"styled-components": "5.1.1"
},
"engines": {
"node": "18.20.0"
"node": "20.12.0"
}
}

0 comments on commit b17c14e

Please sign in to comment.