Skip to content

Commit 2373a58

Browse files
committed
.github: Ensure existing changelog release job also uses latest branch reference
Same as last commit, just the job that actually needed it.
1 parent cb9149a commit 2373a58

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3333
with:
3434
fetch-depth: 0
35+
# Default input is the SHA that initially triggered the workflow. As we created a new commit in the previous job,
36+
# to ensure we get the latest commit we use the ref for checkout: 'refs/heads/<branch_name>'
37+
ref: ${{ github.ref }}
3538
# Avoid persisting GITHUB_TOKEN credentials as they take priority over our service account PAT for `git push` operations
3639
# More details: https://github.com/actions/checkout/blob/b4626ce19ce1106186ddf9bb20e706842f11a7c3/adrs/0153-checkout-v2.md#persist-credentials
3740
persist-credentials: false

meta/meta.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
//
1818
// Deprecated: Use Go standard library [runtime/debug] package build information
1919
// instead.
20-
var SDKVersion = "2.30.0"
20+
var SDKVersion = "2.29.0"
2121

2222
// A pre-release marker for the version. If this is "" (empty string)
2323
// then it means that it is a final release. Otherwise, this is a pre-release

0 commit comments

Comments
 (0)