Skip to content

Commit 754d62e

Browse files
authored
Merge pull request #370 from linode/dev
Release v1.6.9
2 parents 491359c + 1b0868e commit 754d62e

10 files changed

+54
-100
lines changed

.github/workflows/ensure-docs-compiled.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- name: Checkout 🛎
1010
uses: actions/checkout@v5
11-
- uses: actions/setup-go@v5
11+
- uses: actions/setup-go@v6
1212
- shell: bash
1313
run: make generate
1414
- shell: bash

.github/workflows/go-test-multiplatform.yml

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -16,57 +16,36 @@ permissions:
1616
contents: read
1717

1818
jobs:
19-
get-go-version:
20-
runs-on: ubuntu-latest
21-
outputs:
22-
go-version: ${{ steps.get-go-version.outputs.go-version }}
23-
steps:
24-
- uses: actions/checkout@v5
25-
- name: 'Determine Go version'
26-
id: get-go-version
27-
run: |
28-
echo "Found Go $(cat .go-version)"
29-
echo "go-version=$(cat .go-version)" >> $GITHUB_OUTPUT
30-
3119
darwin-go-tests:
32-
needs:
33-
- get-go-version
3420
runs-on: macos-latest
3521
name: Darwin Go tests
3622
steps:
3723
- uses: actions/checkout@v5
38-
- uses: actions/setup-go@v5
24+
- uses: actions/setup-go@v6
3925
with:
40-
go-version: ${{ needs.get-go-version.outputs.go-version }}
26+
go-version: stable
4127
- run: |
42-
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}"
4328
go test -race -count 1 ./... -timeout=3m -v
4429
4530
windows-go-tests:
46-
needs:
47-
- get-go-version
4831
runs-on: windows-latest
4932
name: Windows Go tests
5033
steps:
5134
- uses: actions/checkout@v5
52-
- uses: actions/setup-go@v5
35+
- uses: actions/setup-go@v6
5336
with:
54-
go-version: ${{ needs.get-go-version.outputs.go-version }}
37+
go-version: stable
5538
# Running unit tests directly with `go test` due to gofmt/gofumpt issues in Windows
5639
- run: |
57-
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}"
5840
go test -race -count 1 ./... -timeout=3m -v
5941
6042
linux-go-tests:
61-
needs:
62-
- get-go-version
6343
runs-on: ubuntu-latest
6444
name: Linux Go tests
6545
steps:
6646
- uses: actions/checkout@v5
67-
- uses: actions/setup-go@v5
47+
- uses: actions/setup-go@v6
6848
with:
69-
go-version: ${{ needs.get-go-version.outputs.go-version }}
49+
go-version: stable
7050
- run: |
71-
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}"
7251
make unit-test

.github/workflows/go-validate.yml

Lines changed: 8 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -15,62 +15,43 @@ permissions:
1515
contents: read
1616

1717
jobs:
18-
get-go-version:
19-
runs-on: ubuntu-latest
20-
outputs:
21-
go-version: ${{ steps.get-go-version.outputs.go-version }}
22-
steps:
23-
- uses: actions/checkout@v5
24-
- name: 'Determine Go version'
25-
id: get-go-version
26-
run: |
27-
echo "Found Go $(cat .go-version)"
28-
echo "go-version=$(cat .go-version)" >> $GITHUB_OUTPUT
2918
check-mod-tidy:
30-
needs:
31-
- get-go-version
3219
runs-on: ubuntu-latest
3320
name: Go Mod Tidy
3421
steps:
3522
- uses: actions/checkout@v5
36-
- uses: actions/setup-go@v5
23+
- uses: actions/setup-go@v6
3724
with:
38-
go-version: ${{ needs.get-go-version.outputs.go-version }}
25+
go-version: stable
3926
- run: go mod tidy
4027
check-lint:
41-
needs:
42-
- get-go-version
4328
runs-on: ubuntu-latest
4429
name: Lint check
4530
steps:
4631
- uses: actions/checkout@v5
47-
- uses: actions/setup-go@v5
32+
- uses: actions/setup-go@v6
4833
with:
49-
go-version: ${{ needs.get-go-version.outputs.go-version }}
34+
go-version: stable
5035
- uses: golangci/golangci-lint-action@v8
5136
with:
5237
only-new-issues: true
5338
check-fmt:
54-
needs:
55-
- get-go-version
5639
runs-on: ubuntu-latest
5740
name: Gofmt check
5841
steps:
5942
- uses: actions/checkout@v5
60-
- uses: actions/setup-go@v5
43+
- uses: actions/setup-go@v6
6144
with:
62-
go-version: ${{ needs.get-go-version.outputs.go-version }}
45+
go-version: stable
6346
- run: make fmtcheck
6447
check-generate:
65-
needs:
66-
- get-go-version
6748
runs-on: ubuntu-latest
6849
name: Generate check
6950
steps:
7051
- uses: actions/checkout@v5
71-
- uses: actions/setup-go@v5
52+
- uses: actions/setup-go@v6
7253
with:
73-
go-version: ${{ needs.get-go-version.outputs.go-version }}
54+
go-version: stable
7455
- run: |
7556
export PATH=$PATH:$(go env GOPATH)/bin
7657
make generate

.github/workflows/integration-unit-test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
uses: actions/checkout@v5
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
25-
go-version: ${{ needs.get-go-version.outputs.go-version }}
25+
go-version: stable
2626

2727
- name: Install go-junit-report
2828
run: go install github.com/jstemmer/go-junit-report/v2@latest
@@ -33,7 +33,6 @@ jobs:
3333

3434
- name: Run integration and unit tests
3535
run: |
36-
echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}"
3736
make test | go-junit-report -set-exit-code -iocopy -out "$REPORT_FILENAME"
3837
env:
3938
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}

.github/workflows/notify-integration-release-via-manual.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
ref: ${{ github.event.inputs.branch }}
2323
# Ensure that Docs are Compiled
24-
- uses: actions/setup-go@v5
24+
- uses: actions/setup-go@v6
2525
- shell: bash
2626
run: make generate
2727
- shell: bash

.github/workflows/notify-integration-release-via-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
ref: ${{ github.ref }}
2727
# Ensure that Docs are Compiled
28-
- uses: actions/setup-go@v5
28+
- uses: actions/setup-go@v6
2929
- shell: bash
3030
run: make generate
3131
- shell: bash

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,12 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v5
23-
- name: Get Go version
24-
id: go-version
25-
run: echo "go-version=$(cat .go-version)" >> $GITHUB_OUTPUT
2623
- name: Unshallow
2724
run: git fetch --prune --unshallow
2825
- name: Set up Go
29-
uses: actions/setup-go@v5
26+
uses: actions/setup-go@v6
3027
with:
31-
go-version: ${{ steps.go-version.outputs.go-version }}
28+
go-version: stable
3229
- name: Describe plugin
3330
id: plugin_describe
3431
run: echo "api_version=$(go run . describe | jq -r '.api_version')" >> "$GITHUB_OUTPUT"

.go-version

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

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
module github.com/linode/packer-plugin-linode
22

3-
go 1.23.0
3+
go 1.24.0
44

55
toolchain go1.24.1
66

77
require (
88
github.com/hashicorp/hcl/v2 v2.24.0
99
github.com/hashicorp/packer-plugin-sdk v0.6.3
10-
github.com/linode/linodego v1.56.0
10+
github.com/linode/linodego v1.59.0
1111
github.com/mitchellh/mapstructure v1.5.0
1212
github.com/zclconf/go-cty v1.16.3
13-
golang.org/x/crypto v0.41.0
14-
golang.org/x/oauth2 v0.30.0
13+
golang.org/x/crypto v0.43.0
14+
golang.org/x/oauth2 v0.31.0
1515
)
1616

1717
require (
@@ -87,14 +87,14 @@ require (
8787
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
8888
go.opencensus.io v0.24.0 // indirect
8989
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
90-
golang.org/x/mod v0.26.0 // indirect
91-
golang.org/x/net v0.43.0 // indirect
92-
golang.org/x/sync v0.16.0 // indirect
93-
golang.org/x/sys v0.35.0 // indirect
94-
golang.org/x/term v0.34.0 // indirect
95-
golang.org/x/text v0.28.0 // indirect
90+
golang.org/x/mod v0.28.0 // indirect
91+
golang.org/x/net v0.45.0 // indirect
92+
golang.org/x/sync v0.17.0 // indirect
93+
golang.org/x/sys v0.37.0 // indirect
94+
golang.org/x/term v0.36.0 // indirect
95+
golang.org/x/text v0.30.0 // indirect
9696
golang.org/x/time v0.11.0 // indirect
97-
golang.org/x/tools v0.35.0 // indirect
97+
golang.org/x/tools v0.37.0 // indirect
9898
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
9999
google.golang.org/api v0.150.0 // indirect
100100
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect

go.sum

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
224224
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
225225
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
226226
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
227-
github.com/linode/linodego v1.56.0 h1:WO2ztR6/hdfqCIeZnC8DyYb+AXnuWOl4FB/qqK6T5HE=
228-
github.com/linode/linodego v1.56.0/go.mod h1:W5+QH6nCppgi5gud/b16uAKOzTtfuwzjOHEFA7bKOd0=
227+
github.com/linode/linodego v1.59.0 h1:kYz6sQH9g0u21gbI1UUFjZmFLirtc39JPybygrW76Q0=
228+
github.com/linode/linodego v1.59.0/go.mod h1:1+Bt0oTz5rBnDOJbGhccxn7LYVytXTIIfAy7QYmijDs=
229229
github.com/masterzen/simplexml v0.0.0-20160608183007-4572e39b1ab9/go.mod h1:kCEbxUJlNDEBNbdQMkPSp6yaKcRXVI6f4ddk8Riv4bc=
230230
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 h1:2ZKn+w/BJeL43sCxI2jhPLRv73oVVOjEKZjKkflyqxg=
231231
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786/go.mod h1:kCEbxUJlNDEBNbdQMkPSp6yaKcRXVI6f4ddk8Riv4bc=
@@ -328,8 +328,8 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
328328
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
329329
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
330330
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
331-
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
332-
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
331+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
332+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
333333
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM=
334334
github.com/ugorji/go v1.2.6/go.mod h1:anCg0y61KIhDlPZmnH+so+RQbysYVyDko0IMgJv0Nn0=
335335
github.com/ugorji/go/codec v1.2.6 h1:7kbGefxLoDBuYXOms4yD7223OpNMMPNPZxXk5TvFcyQ=
@@ -350,16 +350,16 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk
350350
golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY=
351351
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
352352
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
353-
golang.org/x/crypto v0.41.0 h1:WKYxWedPGCTVVl5+WHSSrOBT0O8lx32+zxmHxijgXp4=
354-
golang.org/x/crypto v0.41.0/go.mod h1:pO5AFd7FA68rFak7rOAGVuygIISepHftHnr8dr6+sUc=
353+
golang.org/x/crypto v0.43.0 h1:dduJYIi3A3KOfdGOHX8AVZ/jGiyPa3IbBozJ5kNuE04=
354+
golang.org/x/crypto v0.43.0/go.mod h1:BFbav4mRNlXJL4wNeejLpWxB7wMbc79PdRGhWKncxR0=
355355
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
356356
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug=
357357
golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
358358
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
359359
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
360360
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
361-
golang.org/x/mod v0.26.0 h1:EGMPT//Ezu+ylkCijjPc+f4Aih7sZvaAr+O3EHBxvZg=
362-
golang.org/x/mod v0.26.0/go.mod h1:/j6NAhSk8iQ723BGAUyoAcn7SlD7s15Dp9Nd/SfeaFQ=
361+
golang.org/x/mod v0.28.0 h1:gQBtGhjxykdjY9YhZpSlZIsbnaE2+PgjfLWUQTnoZ1U=
362+
golang.org/x/mod v0.28.0/go.mod h1:yfB/L0NOf/kmEbXjzCPOx1iK1fRutOydrCMsqRhEBxI=
363363
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
364364
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
365365
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -373,19 +373,19 @@ golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwY
373373
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
374374
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8=
375375
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
376-
golang.org/x/net v0.43.0 h1:lat02VYK2j4aLzMzecihNvTlJNQUq316m2Mr9rnM6YE=
377-
golang.org/x/net v0.43.0/go.mod h1:vhO1fvI4dGsIjh73sWfUVjj3N7CA9WkKJNQm2svM6Jg=
376+
golang.org/x/net v0.45.0 h1:RLBg5JKixCy82FtLJpeNlVM0nrSqpCRYzVU1n8kj0tM=
377+
golang.org/x/net v0.45.0/go.mod h1:ECOoLqd5U3Lhyeyo/QDCEVQ4sNgYsqvCZ722XogGieY=
378378
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
379-
golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI=
380-
golang.org/x/oauth2 v0.30.0/go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU=
379+
golang.org/x/oauth2 v0.31.0 h1:8Fq0yVZLh4j4YA47vHKFTa9Ew5XIrCP8LC6UeNZnLxo=
380+
golang.org/x/oauth2 v0.31.0/go.mod h1:lzm5WQJQwKZ3nwavOZ3IS5Aulzxi68dUSgRHujetwEA=
381381
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
382382
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
383383
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
384384
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
385385
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
386386
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
387-
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
388-
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
387+
golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug=
388+
golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
389389
golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
390390
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
391391
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -413,19 +413,19 @@ golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBc
413413
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
414414
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
415415
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
416-
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
417-
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
416+
golang.org/x/sys v0.37.0 h1:fdNQudmxPjkdUTPnLn5mdQv7Zwvbvpaxqs831goi9kQ=
417+
golang.org/x/sys v0.37.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
418418
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
419419
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
420-
golang.org/x/term v0.34.0 h1:O/2T7POpk0ZZ7MAzMeWFSg6S5IpWd/RXDlM9hgM3DR4=
421-
golang.org/x/term v0.34.0/go.mod h1:5jC53AEywhIVebHgPVeg0mj8OD3VO9OzclacVrqpaAw=
420+
golang.org/x/term v0.36.0 h1:zMPR+aF8gfksFprF/Nc/rd1wRS1EI6nDBGyWAvDzx2Q=
421+
golang.org/x/term v0.36.0/go.mod h1:Qu394IJq6V6dCBRgwqshf3mPF85AqzYEzofzRdZkWss=
422422
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
423423
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
424424
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
425425
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
426426
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
427-
golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng=
428-
golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU=
427+
golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k=
428+
golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM=
429429
golang.org/x/time v0.11.0 h1:/bpjEDfN9tkoN/ryeYHnv5hcMlc8ncjMcM4XBk5NWV0=
430430
golang.org/x/time v0.11.0/go.mod h1:CDIdPxbZBQxdj6cxyCIdrNogrJKMJ7pr37NYpMcMDSg=
431431
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -434,8 +434,8 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3
434434
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
435435
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
436436
golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
437-
golang.org/x/tools v0.35.0 h1:mBffYraMEf7aa0sB+NuKnuCy8qI/9Bughn8dC2Gu5r0=
438-
golang.org/x/tools v0.35.0/go.mod h1:NKdj5HkL/73byiZSJjqJgKn3ep7KjFkBOkR/Hps3VPw=
437+
golang.org/x/tools v0.37.0 h1:DVSRzp7FwePZW356yEAChSdNcQo6Nsp+fex1SUW09lE=
438+
golang.org/x/tools v0.37.0/go.mod h1:MBN5QPQtLMHVdvsbtarmTNukZDdgwdwlO5qGacAzF0w=
439439
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
440440
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
441441
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=

0 commit comments

Comments
 (0)