Skip to content

Commit db22b81

Browse files
committed
Official Docker Node images do not support Debian Buster anymore. Upgrade.
1 parent 6216f2d commit db22b81

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/actions/linux-arm64-node-18/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/arm64 node:18-buster
1+
FROM --platform=linux/arm64 node:18-bullseye
22

33
RUN apt install python3 make gcc g++
44

.github/actions/linux-arm64-node-20/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/arm64 node:20-buster
1+
FROM --platform=linux/arm64 node:20-bullseye
22

33
RUN apt install python3 make gcc g++
44

.github/actions/linux-node-18/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-buster
1+
FROM node:18-bullseye
22

33
RUN apt install python3 make gcc g++
44

.github/actions/linux-node-20/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-buster
1+
FROM node:20-bullseye
22

33
RUN apt install python3 make gcc g++
44

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: npm run save-to-github
5353

5454
build-linux-node-18:
55-
name: Node.js 18 on Debian Buster
55+
name: Node.js 18 on Debian Bullseye
5656
needs: create-release
5757
runs-on: ubuntu-latest
5858
continue-on-error: true
@@ -67,7 +67,7 @@ jobs:
6767
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
6868

6969
build-linux-node-20:
70-
name: Node.js 20 on Debian Buster
70+
name: Node.js 20 on Debian Bullseye
7171
needs: create-release
7272
runs-on: ubuntu-latest
7373
continue-on-error: true
@@ -142,7 +142,7 @@ jobs:
142142
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
143143

144144
build-linux-arm64-node-18:
145-
name: Node.js 18 on Debian Buster on ARM64
145+
name: Node.js 18 on Debian Bullseye on ARM64
146146
needs: create-release
147147
runs-on: ubuntu-latest
148148
continue-on-error: true
@@ -161,7 +161,7 @@ jobs:
161161
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
162162

163163
build-linux-arm64-node-20:
164-
name: Node.js 20 on Debian Buster on ARM64
164+
name: Node.js 20 on Debian Bullseye on ARM64
165165
needs: create-release
166166
runs-on: ubuntu-latest
167167
continue-on-error: true

0 commit comments

Comments
 (0)