Skip to content

Commit

Permalink
Merge pull request #114 from theohbrothers/enhancement/constraint-doc…
Browse files Browse the repository at this point in the history
…ker-to-20.10.24-in-versions.json

Enhancement: Constraint docker to 20.10.24 in `versions.json`
  • Loading branch information
leojonathanoh authored Oct 22, 2023
2 parents 4dbd98c + 4cdb1fc commit f357746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate/definitions/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"20.10.23"
],
"versionsChangeScope": "minor",
"versionsNewScript": "Invoke-WebRequest https://api.github.com/repos/moby/moby/git/refs/tags | ConvertFrom-Json | % { $_.ref -replace 'refs/tags/v', '' } | ? { $_ -match '^\\d+\\.\\d+\\.\\d+$' } | Sort-Object { [version]$_ } -Descending | ? { $v = [version]$_; $v.Major -eq '20' -and $v.Minor -eq '10' }"
"versionsNewScript": "Invoke-WebRequest https://api.github.com/repos/moby/moby/git/refs/tags | ConvertFrom-Json | % { $_.ref -replace 'refs/tags/v', '' } | ? { $_ -match '^\\d+\\.\\d+\\.\\d+$' } | Sort-Object { [version]$_ } -Descending | ? { $v = [version]$_; $v.Major -eq '20' -and $v.Minor -eq '10' -and $v.Build -eq '24' }"
},
"go": {
"versions": [
Expand Down

0 comments on commit f357746

Please sign in to comment.