Skip to content

Commit

Permalink
removed version pin for 9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michalpristas committed Feb 25, 2025
1 parent 881f757 commit 4b7dd2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -2034,12 +2034,12 @@ func (Integration) UpdateVersions(ctx context.Context) error {
}

// -1 because we manually add 7.17 below
if len(branches) > maxSnapshots-2 {
if len(branches) > maxSnapshots-1 {
branches = branches[:maxSnapshots-2]
}

// it's not a part of this repository, cannot be retrieved with `GetReleaseBranches`
branches = append(branches, "7.17", "9.0")
branches = append(branches, "7.17")

// uncomment if want to have the current version snapshot on the list as well
// branches = append([]string{"master"}, branches...)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# upgrade integration tests.

testVersions:
- 9.0.0-SNAPSHOT
- 8.19.0-SNAPSHOT
- 8.17.2
- 8.16.4
Expand Down

0 comments on commit 4b7dd2d

Please sign in to comment.