Skip to content

Commit 4642ba3

Browse files
authored
chore: Bump Alpine and Node.js (#3713)
* chore: bump alpine * bump alpine and node * bump node in tests
1 parent 779eb6d commit 4642ba3

13 files changed

+16
-16
lines changed

.github/workflows/accessibility-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
./.github/scripts/install-kyma.sh | tee kyma-alpha-deploy.log
2828
- uses: actions/setup-node@v4
2929
with:
30-
node-version: 20
30+
node-version: 22
3131
- name: Setup busola
3232
shell: bash
3333
run: |

.github/workflows/pull-integration-cluster-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/setup-node@v4
3737
name: Setup node
3838
with:
39-
node-version: 20
39+
node-version: 22
4040
- name: Setup Busola
4141
shell: bash
4242
run: |

.github/workflows/pull-integration-namespace-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/setup-node@v4
3737
name: Setup node
3838
with:
39-
node-version: 20
39+
node-version: 22
4040
- name: Setup Busola
4141
shell: bash
4242
run: |

.github/workflows/pull-kyma-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/setup-node@v4
3737
name: Setup node
3838
with:
39-
node-version: 20
39+
node-version: 22
4040
- name: Deploy Busola
4141
id: deploy_busola
4242
shell: bash

.github/workflows/pull-lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/setup-node@v4
3636
name: Setup node
3737
with:
38-
node-version: 20
38+
node-version: 22
3939
- name: Run busola
4040
shell: bash
4141
run: |

.github/workflows/pull-smoke-test-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
./.github/scripts/install-kyma.sh | tee kyma-alpha-deploy.log
3737
- uses: actions/setup-node@v4
3838
with:
39-
node-version: 20
39+
node-version: 22
4040
- name: setup_busola
4141
shell: bash
4242
run: |

.github/workflows/pull-smoke-test-stage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
./.github/scripts/install-kyma.sh | tee kyma-alpha-deploy.log
3636
- uses: actions/setup-node@v4
3737
with:
38-
node-version: 20
38+
node-version: 22
3939
- name: Setup Busola
4040
shell: bash
4141
run: |

.github/workflows/pull-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: ./.github/actions/merge
2828
- uses: actions/setup-node@v4
2929
with:
30-
node-version: 20
30+
node-version: 22
3131
- name: setup_busola
3232
shell: bash
3333
run: |

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# this is a Dockerfile for single deployment app - both backend and frontends
22

33
# ---- Base Alpine with Node ----
4-
FROM node:20.17-alpine3.20 AS builder
4+
FROM node:22.14-alpine3.21 AS builder
55
ARG default_tag
66
ARG tag
77

@@ -27,7 +27,7 @@ RUN npm run build:docker
2727
RUN cd /app/backend && npm run build
2828

2929
# ---- Environments Configuration ----
30-
FROM node:20.17-alpine3.20 AS configuration
30+
FROM node:22.14-alpine3.21 AS configuration
3131
WORKDIR /kyma
3232

3333
RUN apk add make
@@ -39,7 +39,7 @@ RUN npm ci
3939
RUN make prepare-configuration
4040

4141
# ---- Serve ----
42-
FROM alpine:3.20.2
42+
FROM alpine:3.21.3
4343
WORKDIR /app
4444

4545
RUN apk --no-cache upgrade && \

Dockerfile.web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ---- Base Alpine with Node ----
2-
FROM node:20.17-alpine3.20 AS builder
2+
FROM node:22.14-alpine3.21 AS builder
33
ARG default_tag
44
ARG tag
55

@@ -22,7 +22,7 @@ RUN export TAG=${tag:-$default_tag} && yq -i '.version = "'${TAG}'"' public/ver
2222
RUN npm run build:docker
2323

2424
# ---- Environments Configuration ----
25-
FROM node:20.17-alpine3.20 as configuration
25+
FROM node:22.14-alpine3.21 as configuration
2626
WORKDIR /kyma
2727

2828
RUN apk add make

0 commit comments

Comments
 (0)