Skip to content

Commit

Permalink
Official Docker Node images do not support Debian Buster anymore. Upg…
Browse files Browse the repository at this point in the history
…rade.
  • Loading branch information
uhop committed Aug 24, 2024
1 parent 6216f2d commit db22b81
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/linux-arm64-node-18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/arm64 node:18-buster
FROM --platform=linux/arm64 node:18-bullseye

RUN apt install python3 make gcc g++

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/linux-arm64-node-20/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/arm64 node:20-buster
FROM --platform=linux/arm64 node:20-bullseye

RUN apt install python3 make gcc g++

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/linux-node-18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-buster
FROM node:18-bullseye

RUN apt install python3 make gcc g++

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/linux-node-20/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-buster
FROM node:20-bullseye

RUN apt install python3 make gcc g++

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: npm run save-to-github

build-linux-node-18:
name: Node.js 18 on Debian Buster
name: Node.js 18 on Debian Bullseye
needs: create-release
runs-on: ubuntu-latest
continue-on-error: true
Expand All @@ -67,7 +67,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

build-linux-node-20:
name: Node.js 20 on Debian Buster
name: Node.js 20 on Debian Bullseye
needs: create-release
runs-on: ubuntu-latest
continue-on-error: true
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

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

build-linux-arm64-node-20:
name: Node.js 20 on Debian Buster on ARM64
name: Node.js 20 on Debian Bullseye on ARM64
needs: create-release
runs-on: ubuntu-latest
continue-on-error: true
Expand Down

0 comments on commit db22b81

Please sign in to comment.