Skip to content

Commit 061ed23

Browse files
authored
Bump go version to 1.24.6 (#2550)
Adds a build-done job to prevent merging broken PRs
1 parent b135c4c commit 061ed23

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,20 @@ jobs:
234234
- name: "Generate Vault API Path Coverage Report"
235235
run: |
236236
go run cmd/coverage/main.go -openapi-doc=./testdata/openapi.json
237+
#
238+
# This job is used as a requirement for the repo's branch protection setup.
239+
build-done:
240+
runs-on: ubuntu-latest
241+
if: always()
242+
needs:
243+
- acceptance
244+
steps:
245+
- name: cancelled
246+
if: ${{ (contains(needs.*.result, 'cancelled')) }}
247+
run: exit 2
248+
- name: passed
249+
if: ${{ !(contains(needs.*.result, 'failure')) }}
250+
run: exit 0
251+
- name: failed
252+
if: ${{ contains(needs.*.result, 'failure') }}
253+
run: exit 1

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.4
1+
1.24.6

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ BUGS:
1111
* Fix the tune block issue where it always updates unless field values match Vault server defaults
1212
* `vault_jwt_auth_backend` resource ([#2546](https://github.com/hashicorp/terraform-provider-vault/pull/2546))
1313

14+
BUILD:
15+
* Bump Go version to 1.24.6: ([#2550](https://github.com/hashicorp/terraform-provider-vault/pull/2550))
16+
17+
1418
## 5.1.0 (Jul 9, 2025)
1519

1620
FEATURES:

0 commit comments

Comments
 (0)