TT#124273 github actions: replace bullseye with bookworm

Debian/bookworm is the current stable release and this
is also what we're supporting, so switch GitHub actions
accordingly from bullseye to bookworm.

Change-Id: I427ede88cec3ba2ef26c1351807b06d75ed4a37a
mr12.1
Michael Prokop 2 years ago
parent ad97e666f6
commit def4d75411

@ -1,4 +1,4 @@
FROM debian:bullseye
FROM debian:bookworm
COPY entrypoint.sh /entrypoint.sh

@ -0,0 +1,6 @@
name: "Build Docker image based on Debian/bookworm"
description: "Build Docker image based on Debian/bookworm"
runs:
using: 'docker'
image: 'Dockerfile'

@ -1,6 +0,0 @@
name: "Build Docker image based on Debian/bullseye"
description: "Build Docker image based on Debian/bullseye"
runs:
using: 'docker'
image: 'Dockerfile'

@ -7,16 +7,16 @@ on:
- cron: '0 8 * * *'
jobs:
build-deb-bullseye:
build-deb-bookworm:
runs-on: ubuntu-latest
name: Debian pipeline for bullseye
name: Debian pipeline for bookworm
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Execute Docker debpkg action
uses: ./.github/actions/debpkg-bullseye
uses: ./.github/actions/debpkg-bookworm
- name: Store Debian package artifacts
uses: actions/upload-artifact@v2

Loading…
Cancel
Save