File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ jobs:
163163
164164 # Stage and commit changes
165165 git add MODULE.bazel go/extractor/go.mod go/extractor/autobuilder/build-environment.go go/actions/test/action.yml
166- git commit -m "Go: Update to $LATEST_MAJOR_MINOR "
166+ git commit -m "Go: Update to $LATEST_VERSION_NUM "
167167
168168 # Push changes
169169 git push -f origin "$BRANCH_NAME"
@@ -174,13 +174,13 @@ jobs:
174174 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
175175 run : |
176176 BRANCH_NAME="workflow/go-version-update"
177- LATEST_MAJOR_MINOR ="${{ steps.fetch-version.outputs.major_minor }}"
178- CURRENT_MAJOR_MINOR ="${{ steps.current-version.outputs.major_minor }}"
177+ LATEST_VERSION_NUM ="${{ steps.fetch-version.outputs.version_num }}"
178+ CURRENT_VERSION ="${{ steps.current-version.outputs.version }}"
179179
180- PR_TITLE="Go: Update to $LATEST_MAJOR_MINOR "
180+ PR_TITLE="Go: Update to $LATEST_VERSION_NUM "
181181
182182 PR_BODY=$(cat <<EOF
183- This PR updates Go from $CURRENT_MAJOR_MINOR to $LATEST_MAJOR_MINOR .
183+ This PR updates Go from $CURRENT_VERSION to $LATEST_VERSION_NUM .
184184
185185 Updated files:
186186 - \`MODULE.bazel\` - go_sdk.download version
You can’t perform that action at this time.
0 commit comments