Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(fetcher/debian): add Debian 12 bookworm #316

Merged
merged 1 commit into from
Jun 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/fetch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
--health-timeout 5s
--health-retries 5
env:
Version: 7 8 9 10 11
Version: 7 8 9 10 11 12
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ const (
// Debian11 is bullseye
Debian11 = "bullseye"

// Debian12 is bookworm
Debian12 = "bookworm"

// OpenSUSE is
OpenSUSE = "opensuse"

Expand Down
2 changes: 2 additions & 0 deletions fetcher/debian/debian.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ func debianName(major string) string {
return config.Debian10
case "11":
return config.Debian11
case "12":
return config.Debian12
default:
return "unknown"
}
Expand Down