Fix Debian container tag from debian:13 to debian:trixie
Some checks failed
Build deb-bootupd Artifacts / Build deb-bootupd Artifacts (push) Failing after 4m35s
Simple Build & Upload / build (push) Has been cancelled

- Change container image from debian:13 to debian:trixie (correct tag)
- Update environment variable to show '13 (Trixie)' for clarity
- Add explanatory comments about Debian tag naming convention
- Fixes 'manifest unknown' Docker pull errors in both workflows
This commit is contained in:
robojerk 2025-08-10 00:00:24 -07:00
parent 528e494bfb
commit 4a88e5824c
2 changed files with 5 additions and 3 deletions

View file

@ -23,7 +23,7 @@ on:
workflow_dispatch: workflow_dispatch:
env: env:
DEBIAN_VERSION: "13" DEBIAN_VERSION: "13 (Trixie)"
RUST_VERSION: "1.84.1" RUST_VERSION: "1.84.1"
jobs: jobs:
@ -32,7 +32,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
# Use Debian 13 (Trixie) since this is a Debian-focused project # Use Debian 13 (Trixie) since this is a Debian-focused project
image: debian:13 # Note: debian:trixie is the correct tag for Debian 13
image: debian:trixie
steps: steps:
- name: Setup build environment - name: Setup build environment
shell: bash shell: bash

View file

@ -15,7 +15,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
# Use Debian 13 (Trixie) since this is a Debian-focused project # Use Debian 13 (Trixie) since this is a Debian-focused project
image: debian:13 # Note: debian:trixie is the correct tag for Debian 13
image: debian:trixie
steps: steps:
- name: Checkout code and setup environment - name: Checkout code and setup environment
run: | run: |