Skip to content

Commit

Permalink
fixup! [bump-go] Bump Go to 1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eternal-flame-AD committed Oct 15, 2024
1 parent a6ade6a commit 925190d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ci/bump_go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ PR_LABEL="bump-go"

set -e

if [ ! -z "$(git status -s -uall)" ]; then
echo "Working directory is not clean" 2>&1
exit 1
fi

git show-ref --verify --quiet refs/heads/bump-go || git branch -c $REF_BRANCH bump-go

# The version in the GO_VERSION file
Expand All @@ -20,7 +25,7 @@ echo "Installed version: $latest_version"
bump_candidate_version=$(git show bump-go:GO_VERSION 2>/dev/null || echo "")
echo "Bump candidate version: $bump_candidate_version"

existing_prs=$(gh pr list --state open --base main --label "$PR_KEYWORD" --json "number" | jq -r 'map(.number) | .[]')
existing_prs=$(gh pr list --state open --base main --label "$PR_LABEL" --json "number" | jq -r 'map(.number) | .[]')

if [ "$current_version" == "$latest_version" ]; then
echo "Go is up to date"
Expand Down

0 comments on commit 925190d

Please sign in to comment.