Skip to content

Commit 3edf326

Browse files
renovate[bot]jianyuan
authored andcommitted
Update actions/checkout action to v4.1.6 (#2)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent bc9bcfb commit 3edf326

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
goreleaser:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
20+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2121
with:
2222
# Allow goreleaser to access older tag information.
2323
fetch-depth: 0

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 5
2424
steps:
25-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
25+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2626
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
2727
with:
2828
go-version-file: 'go.mod'
@@ -37,7 +37,7 @@ jobs:
3737
generate:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
40+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
4141
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
4242
with:
4343
go-version-file: 'go.mod'
@@ -71,7 +71,7 @@ jobs:
7171
- '1.3.*'
7272
- '1.4.*'
7373
steps:
74-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
74+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
7575
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
7676
with:
7777
go-version-file: 'go.mod'

docs/data-sources/organization.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,18 @@ description: |-
1010

1111
Retrieve information about an organization.
1212

13-
13+
## Example Usage
14+
15+
```terraform
16+
// Get the default organization
17+
data "openai_organization" "default" {
18+
}
19+
20+
// Get an organization by ID
21+
data "openai_organization" "example" {
22+
id = "org-000000000000000000000000"
23+
}
24+
```
1425

1526
<!-- schema generated by tfplugindocs -->
1627
## Schema

0 commit comments

Comments
 (0)