Skip to content

Commit 5bbe7d7

Browse files
committed
Merge branch 'main' into logic_kv_identity
2 parents 3a7b338 + 9a03001 commit 5bbe7d7

File tree

4,018 files changed

+102512
-70092
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,018 files changed

+102512
-70092
lines changed

.github/workflows/breaking-change-detection.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: custom-linux-small
2424
steps:
2525
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
26+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2727
with:
2828
go-version-file: ./.go-version
2929
- run: bash ./scripts/run-breaking-change-detection.sh

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
go-version: ${{ steps.get-go-version.outputs.go-version }}
3232
steps:
3333
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
34+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
3535
with:
3636
go-version-file: 'go.mod'
3737
- name: Detect Go version
@@ -123,6 +123,8 @@ jobs:
123123
- get-go-version
124124
- set-product-version
125125
runs-on: custom-ubuntu-22.04-medium
126+
if: github.repository_owner == 'hashicorp'
127+
timeout-minutes: 30
126128
strategy:
127129
fail-fast: true
128130
# Verify expected Artifacts list for a workflow run.
@@ -184,4 +186,4 @@ jobs:
184186
echo "### What's next?" >> "$GITHUB_STEP_SUMMARY"
185187
echo "#### For a release branch (see \`.release/ci.hcl\`)" >> $GITHUB_STEP_SUMMARY
186188
echo "After this \`build\` workflow run completes succesfully, you can expect the CRT \`prepare\` workflow to begin momentarily." >> "$GITHUB_STEP_SUMMARY"
187-
echo "To find the \`prepare\` workflow run, [view the checks for this commit]($github_dot_com/$owner_with_name/commits/$ref)" >> "$GITHUB_STEP_SUMMARY"
189+
echo "To find the \`prepare\` workflow run, [view the checks for this commit]($github_dot_com/$owner_with_name/commits/$ref)" >> "$GITHUB_STEP_SUMMARY"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Close Inactive Draft PRs'
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 6 * * MON'
6+
7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
11+
jobs:
12+
stale-draft-prs:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- name: Process stale draft PRs
17+
run: ./scripts/close-inactive-draft-prs.sh -o "${{ github.repository_owner }}" -r "${{ github.event.repository.name }}" -t "${{ secrets.GITHUB_TOKEN }}"
18+

.github/workflows/comment-failure.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ on:
44
# This file is reused, and called from other workflows
55
workflow_call:
66

7+
permissions:
8+
pull-requests: write
9+
710
jobs:
811
comment-failure:
912
runs-on: ubuntu-latest
1013
steps:
1114
- name: Get run url
12-
if: failure()
1315
run: |
1416
echo "gha_url=https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" >> $GITHUB_ENV
1517
- name: Send build failure comment
16-
if: failure()
1718
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
1819
with:
1920
result-encoding: string
@@ -23,4 +24,4 @@ jobs:
2324
owner: context.repo.owner,
2425
repo: context.repo.repo,
2526
body: '<b>Build failure</b> \n\n This pull request contains a build failure which needs addressed [here](${{ env.gha_url}}) .'
26-
})
27+
})

.github/workflows/depscheck.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Vendor Dependencies Check
33

44
permissions:
55
contents: read
6+
pull-requests: write
67

78
on:
89
pull_request:
@@ -17,7 +18,7 @@ jobs:
1718
runs-on: ubuntu-latest
1819
steps:
1920
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
21+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2122
with:
2223
go-version-file: ./.go-version
2324
- run: bash scripts/gogetcookie.sh

.github/workflows/document-lint.yaml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/gencheck.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Generation Check
33

44
permissions:
55
contents: read
6+
pull-requests: write
67

78
on:
89
pull_request:
@@ -20,7 +21,7 @@ jobs:
2021
runs-on: custom-linux-large
2122
steps:
2223
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
24+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2425
with:
2526
go-version-file: ./.go-version
2627
- run: bash scripts/gogetcookie.sh

.github/workflows/golint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: GoLang Linting
33

44
permissions:
55
contents: read
6+
pull-requests: write
67

78
on:
89
pull_request:
@@ -21,7 +22,7 @@ jobs:
2122
runs-on: custom-linux-large
2223
steps:
2324
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
25+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2526
with:
2627
go-version-file: ./.go-version
2728
- uses: golangci/golangci-lint-action@9fae48acfc02a90574d7c304a1758ef9895495fa # v7.0.1

.github/workflows/gradually-deprecated.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Check for new usages of deprecated functionality
33

44
permissions:
55
contents: read
6+
pull-requests: write
67

78
on:
89
pull_request:
@@ -19,7 +20,7 @@ jobs:
1920
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2021
with:
2122
fetch-depth: 0
22-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
23+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
2324
with:
2425
go-version-file: ./.go-version
2526
- run: bash ./scripts/run-gradually-deprecated.sh

.github/workflows/link-milestone.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pull-requests: write
1616
issues: write
1717
steps:
18-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
18+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
1919
with:
2020
# we cannot use go-version-file here because no repositories are checked out so there is no file to reference
2121
go-version: '1.25.3'

0 commit comments

Comments
 (0)