diff options
author | Josh Spicer <joshspicer@github.com> | 2023-06-17 00:31:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-17 00:31:40 +0300 |
commit | 367308c73606c03fa1a68e884d6ec37320a46b4f (patch) | |
tree | 67f20231f1145f49aa0b01a26ddf0542a3d69bd9 | |
parent | 852f1f0567280b465913b487d5f8c773122c36ab (diff) |
Add Debian Bookworm as a test base image (#575)
test against debian bookworm
-rw-r--r-- | .github/workflows/test-all.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/test-pr.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index ab51a73..8dc206d 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -42,11 +42,11 @@ jobs: ] baseImage: [ + "ubuntu:bionic", "ubuntu:focal", "ubuntu:jammy", - "ubuntu:bionic", "debian:11", - "debian:10", + "debian:12", "mcr.microsoft.com/devcontainers/base:ubuntu", "mcr.microsoft.com/devcontainers/base:debian", ] diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index fb586fb..6b91b61 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -49,11 +49,11 @@ jobs: features: ${{ fromJSON(needs.detect-changes.outputs.features) }} baseImage: [ + "ubuntu:bionic", "ubuntu:focal", "ubuntu:jammy", - "ubuntu:bionic", "debian:11", - "debian:10", + "debian:12", "mcr.microsoft.com/devcontainers/base:ubuntu", "mcr.microsoft.com/devcontainers/base:debian", ] |