Browse Source

TT#124273 GitHub actions: upgrade from bullseye to bookworm

bookworm is the current Debian stable release as of 2023-06-10,
so switch from bullseye to bookworm.

Change-Id: I7df785862dd6a1466d426c147dce5877e66ec9d3
pull/1722/head
Michael Prokop 2 years ago
parent
commit
77809b9059
5 changed files with 10 additions and 10 deletions
  1. +1
    -1
      .github/actions/debpkg-bookworm/Dockerfile
  2. +6
    -0
      .github/actions/debpkg-bookworm/action.yml
  3. +0
    -0
      .github/actions/debpkg-bookworm/entrypoint.sh
  4. +0
    -6
      .github/actions/debpkg-bullseye/action.yml
  5. +3
    -3
      .github/workflows/debpkg.yml

.github/actions/debpkg-bullseye/Dockerfile → .github/actions/debpkg-bookworm/Dockerfile View File


+ 6
- 0
.github/actions/debpkg-bookworm/action.yml View File

@ -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'

.github/actions/debpkg-bullseye/entrypoint.sh → .github/actions/debpkg-bookworm/entrypoint.sh View File


+ 0
- 6
.github/actions/debpkg-bullseye/action.yml View File

@ -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'

+ 3
- 3
.github/workflows/debpkg.yml View File

@ -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@v3
- name: Execute Docker debpkg action
uses: ./.github/actions/debpkg-bullseye
uses: ./.github/actions/debpkg-bookworm
- name: Store Debian package artifacts
uses: actions/upload-artifact@v3


Loading…
Cancel
Save