Skip to content

Commit

Permalink
Enhancement: Constraint docker to 20.10.24 in versions.json
Browse files Browse the repository at this point in the history
Follow up of #111. docker 20.10.25 and above are not released on https://download.docker.com/linux/static/stable/.
  • Loading branch information
leojonathanoh committed Oct 22, 2023
1 parent 4dbd98c commit 4cdb1fc
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 4cdb1fc

Please sign in to comment.