Skip to content

Commit 4f68259

Browse files
committed
fix(updatecli): improve GitHub CLI version filter pattern
Change GitHub CLI version filter from '~2.62' to '>=2.62.0' to ensure proper version matching and updates. The ~2.62 pattern was too restrictive and wasn't matching newer releases correctly. The >=2.62.0 pattern will allow UpdateCLI to track all GitHub CLI versions from 2.62.0 onwards while still respecting semantic versioning constraints.
1 parent 5bb82d4 commit 4f68259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

updatecli/updatecli.d/devcontainer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sources:
3434
token: "{{ requiredEnv .github.token }}"
3535
versionfilter:
3636
kind: semver
37-
pattern: '~2.62'
37+
pattern: '>=2.62.0'
3838

3939
targets:
4040
dockerVersion:

0 commit comments

Comments
 (0)