mirror of https://github.com/knative/docs.git
				
				
				
			upgrade to latest dependencies (#6358)
bumping knative.dev/hack d496a6e...1499de2: > 1499de2 Fix dot releases (# 433) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
		
							parent
							
								
									8f460d8c44
								
							
						
					
					
						commit
						31cca91976
					
				
							
								
								
									
										2
									
								
								go.mod
								
								
								
								
							
							
						
						
									
										2
									
								
								go.mod
								
								
								
								
							|  | @ -5,7 +5,7 @@ go 1.23.0 | ||||||
| require ( | require ( | ||||||
| 	github.com/google/go-github/v32 v32.1.0 | 	github.com/google/go-github/v32 v32.1.0 | ||||||
| 	gopkg.in/yaml.v2 v2.3.0 | 	gopkg.in/yaml.v2 v2.3.0 | ||||||
| 	knative.dev/hack v0.0.0-20250819212547-d496a6e708d3 | 	knative.dev/hack v0.0.0-20250902153942-1499de21e119 | ||||||
| ) | ) | ||||||
| 
 | 
 | ||||||
| require ( | require ( | ||||||
|  |  | ||||||
							
								
								
									
										4
									
								
								go.sum
								
								
								
								
							
							
						
						
									
										4
									
								
								go.sum
								
								
								
								
							|  | @ -23,5 +23,5 @@ gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8X | ||||||
| gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
| gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU= | gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU= | ||||||
| gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | ||||||
| knative.dev/hack v0.0.0-20250819212547-d496a6e708d3 h1:4V+r4q/1ln8U1M1qBotYGfBza7whAf2iMCZtgdhAiu0= | knative.dev/hack v0.0.0-20250902153942-1499de21e119 h1:NbQvjnFK1tL489LN0qAybWy0E17Jpziwcv/XIHwfp6M= | ||||||
| knative.dev/hack v0.0.0-20250819212547-d496a6e708d3/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY= | knative.dev/hack v0.0.0-20250902153942-1499de21e119/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY= | ||||||
|  |  | ||||||
|  | @ -222,8 +222,12 @@ function prepare_dot_release() { | ||||||
|   local last_release_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]' -n 1 "${github_tag}")" |   local last_release_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]' -n 1 "${github_tag}")" | ||||||
|   local release_branch_commit="$(git rev-list -n 1 upstream/"${RELEASE_BRANCH}")" |   local release_branch_commit="$(git rev-list -n 1 upstream/"${RELEASE_BRANCH}")" | ||||||
|   local release_branch_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]' -n 1 upstream/"${RELEASE_BRANCH}")" |   local release_branch_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]' -n 1 upstream/"${RELEASE_BRANCH}")" | ||||||
|  | 
 | ||||||
|   [[ -n "${last_release_commit}" ]] || abort "cannot get last release commit" |   [[ -n "${last_release_commit}" ]] || abort "cannot get last release commit" | ||||||
|   [[ -n "${release_branch_commit}" ]] || abort "cannot get release branch last commit" |   [[ -n "${release_branch_commit}" ]] || abort "cannot get release branch last commit" | ||||||
|  |   [[ -n "${last_release_commit_filtered}" ]] || abort "cannot get filtered last release commit" | ||||||
|  |   [[ -n "${release_branch_commit_filtered}" ]] || abort "cannot get filtered release branch last commit" | ||||||
|  | 
 | ||||||
|   echo "Version ${last_version} is at commit ${last_release_commit}. Comparing using ${last_release_commit_filtered}. If it is different is because commits with the [skip-dot-release] flag in their commit body are not being considered." |   echo "Version ${last_version} is at commit ${last_release_commit}. Comparing using ${last_release_commit_filtered}. If it is different is because commits with the [skip-dot-release] flag in their commit body are not being considered." | ||||||
|   echo "Branch ${RELEASE_BRANCH} is at commit ${release_branch_commit}. Comparing using ${release_branch_commit_filtered}. If it is different is because commits with the [skip-dot-release] flag in their commit body are not being considered." |   echo "Branch ${RELEASE_BRANCH} is at commit ${release_branch_commit}. Comparing using ${release_branch_commit_filtered}. If it is different is because commits with the [skip-dot-release] flag in their commit body are not being considered." | ||||||
|   if [[ "${last_release_commit_filtered}" == "${release_branch_commit_filtered}" ]]; then |   if [[ "${last_release_commit_filtered}" == "${release_branch_commit_filtered}" ]]; then | ||||||
|  |  | ||||||
|  | @ -22,7 +22,7 @@ golang.org/x/crypto/openpgp/s2k | ||||||
| # gopkg.in/yaml.v2 v2.3.0 | # gopkg.in/yaml.v2 v2.3.0 | ||||||
| ## explicit | ## explicit | ||||||
| gopkg.in/yaml.v2 | gopkg.in/yaml.v2 | ||||||
| # knative.dev/hack v0.0.0-20250819212547-d496a6e708d3 | # knative.dev/hack v0.0.0-20250902153942-1499de21e119 | ||||||
| ## explicit; go 1.21 | ## explicit; go 1.21 | ||||||
| knative.dev/hack | knative.dev/hack | ||||||
| # go.opencensus.io => go.opencensus.io v0.20.2 | # go.opencensus.io => go.opencensus.io v0.20.2 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue