Skip to content

Commit

Permalink
Merge pull request #51 from jack-w-shaw/fix_noble_version
Browse files Browse the repository at this point in the history
Fix noble version
  • Loading branch information
jack-w-shaw authored May 15, 2024
2 parents c95d1bd + fcc69b9 commit c709cfd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/client-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:

- name: Set up Go 1.14
- name: Set up Go 1.17
uses: actions/[email protected]
with:
go-version: 1.14
go-version: 1.17
id: go

- name: Checkout
Expand Down
2 changes: 2 additions & 0 deletions series/series.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ func macOSXSeriesFromKernelVersion(getKernelVersion func() (string, error)) (str
// macOSXSeries maps from the Darwin Kernel Major Version to the Mac OSX
// series.
var macOSXSeries = map[int]string{
23: "sonoma",
22: "ventura",
21: "monterey",
20: "bigsur",
19: "catalina",
Expand Down
2 changes: 1 addition & 1 deletion series/supportedseries.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ var ubuntuSeries = map[string]SeriesVersionInfo{
Supported: false,
},
"noble": {
Version: "24.40",
Version: "24.04",
LTS: true,
ESMSupported: false,
Supported: false,
Expand Down

0 comments on commit c709cfd

Please sign in to comment.