Skip to content

Commit 4728b0d

Browse files
authored
deps: upgrade debian to bookworm (#430)
Signed-off-by: Nic <[email protected]>
1 parent 2d49243 commit 4728b0d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
3838
- name: Build api7ee-runtime deb
3939
run: |
40-
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}
40+
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bookworm-slim arch=${{ matrix.platform.build_arch }}
4141
4242
- name: Upload Artifact
4343
uses: actions/upload-artifact@v4
4444
with:
45-
name: api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
46-
path: ./output/api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
45+
name: api7ee-runtime_${{ env.version }}-0~debianbookworm-slim_${{ matrix.platform.arch }}.deb
46+
path: ./output/api7ee-runtime_${{ env.version }}-0~debianbookworm-slim_${{ matrix.platform.arch }}.deb

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Build api7ee-runtime deb
4141
run: |
42-
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}
42+
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bookworm-slim arch=${{ matrix.platform.build_arch }}
4343
4444
- uses: mukunku/[email protected]
4545
id: check-tag
@@ -64,6 +64,6 @@ jobs:
6464
body: |
6565
Release api7ee-runtime ${{ env.version }}
6666
files: |
67-
./output/api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
67+
./output/api7ee-runtime_${{ env.version }}-0~debianbookworm-slim_${{ matrix.platform.arch }}.deb
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.2
1+
1.2.3

dockerfiles/Dockerfile.api7ee-runtime.deb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG IMAGE_BASE="debian"
2-
ARG IMAGE_TAG="bullseye-slim"
2+
ARG IMAGE_TAG="bookworm-slim"
33

44
FROM ${IMAGE_BASE}:${IMAGE_TAG} as build
55

test/apisix/Dockerfile.test.apisix.deb.ubuntu20.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -x \
2121
&& wget -O - https://openresty.org/package/pubkey.gpg | apt-key add - \
2222
&& wget -O - http://repos.apiseven.com/pubkey.gpg | apt-key add - \
2323
&& echo "deb http://openresty.org/package/${arch_path}ubuntu $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/openresty.list \
24-
&& echo "deb http://repos.apiseven.com/packages/debian bullseye main" | tee /etc/apt/sources.list.d/apisix.list \
24+
&& echo "deb http://repos.apiseven.com/packages/debian bookworm main" | tee /etc/apt/sources.list.d/apisix.list \
2525
&& DEBIAN_FRONTEND=noninteractive apt-get update
2626

2727
# install etcd

0 commit comments

Comments
 (0)