Skip to content

Commit 9226cfb

Browse files
authored
Merge branch 'linode:main' into main
2 parents 2d2b6f7 + cee3651 commit 9226cfb

File tree

74 files changed

+1431
-433
lines changed

Some content is hidden

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

74 files changed

+1431
-433
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
15-
- uses: actions/setup-go@v5
15+
- uses: actions/setup-go@v6
1616
with:
1717
go-version: stable
1818

@@ -44,13 +44,13 @@ jobs:
4444
submodules: 'recursive'
4545

4646
- name: Set up Go
47-
uses: actions/setup-go@v5
47+
uses: actions/setup-go@v6
4848
with:
4949
go-version: 'stable'
5050
- run: go version
5151

5252
- name: Setup Python
53-
uses: actions/setup-python@v5
53+
uses: actions/setup-python@v6
5454
with:
5555
python-version: '3.x'
5656

.github/workflows/integration_tests_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
if: github.event_name == 'workflow_dispatch' && inputs.sha != ''
2121
steps:
22-
- uses: actions/setup-go@v5
22+
- uses: actions/setup-go@v6
2323
with:
2424
go-version: 'stable'
2525
- run: go version
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7373

74-
- uses: actions/github-script@v7
74+
- uses: actions/github-script@v8
7575
id: update-check-run
7676
if: ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }}
7777
env:
@@ -132,7 +132,7 @@ jobs:
132132

133133
steps:
134134
- name: Set up Python
135-
uses: actions/setup-python@v5
135+
uses: actions/setup-python@v6
136136
with:
137137
python-version: '3.x'
138138

.github/workflows/nightly_smoke_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
ref: ${{ github.event.inputs.sha || github.ref }}
2626

2727
- name: Set up Go
28-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
2929
with:
3030
go-version: '1.x'
3131

.github/workflows/release-cross-repo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
submodules: 'recursive'
1616

1717
- name: Set up Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: 'stable'
2121
- run: go version

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
stale:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/stale@v9
11+
- uses: actions/stale@v10
1212
id: stale
1313
with:
1414
stale-issue-message: 'This issue is stale because it has been open 30 days with

account.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (i Account) GetUpdateOptions() (o AccountUpdateOptions) {
6363
o.TaxID = i.TaxID
6464
o.Zip = i.Zip
6565

66-
return
66+
return o
6767
}
6868

6969
// UnmarshalJSON implements the json.Unmarshaler interface

account_agreements.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func (i AccountAgreements) GetUpdateOptions() (o AccountAgreementsUpdateOptions)
2222
o.MasterServiceAgreement = i.MasterServiceAgreement
2323
o.PrivacyPolicy = i.PrivacyPolicy
2424

25-
return
25+
return o
2626
}
2727

2828
// GetAccountAgreements gets all agreements and their acceptance status for the Account.

account_betas.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import (
88
"github.com/linode/linodego/internal/parseabletime"
99
)
1010

11-
// The details and enrollment information of a Beta program that an account is enrolled in.
11+
// AccountBetaProgram represents an enrolled Account Beta Program object,
12+
// which contains the details and enrollment information of a Beta program
13+
// that an account is enrolled in.
1214
type AccountBetaProgram struct {
1315
Label string `json:"label"`
1416
ID string `json:"id"`

account_maintenance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type AccountMaintenance struct {
2828
When *time.Time `json:"when"`
2929
}
3030

31-
// The entity being affected by maintenance
31+
// Entity represents the entity being affected by maintenance
3232
type Entity struct {
3333
ID int `json:"id"`
3434
Label string `json:"label"`

account_oauth_client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (i OAuthClient) GetCreateOptions() (o OAuthClientCreateOptions) {
6868
o.Label = i.Label
6969
o.Public = i.Public
7070

71-
return
71+
return o
7272
}
7373

7474
// GetUpdateOptions converts a OAuthClient to OAuthClientUpdateOptions for use in UpdateOAuthClient
@@ -77,7 +77,7 @@ func (i OAuthClient) GetUpdateOptions() (o OAuthClientUpdateOptions) {
7777
o.Label = i.Label
7878
o.Public = i.Public
7979

80-
return
80+
return o
8181
}
8282

8383
// ListOAuthClients lists OAuthClients

0 commit comments

Comments
 (0)