Skip to content

Commit f025de1

Browse files
Merge branch 'dev' into proj/linode-interfaces
2 parents ea81be0 + bb03cd4 commit f025de1

File tree

3 files changed

+93
-47
lines changed

3 files changed

+93
-47
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
uses: actions/checkout@v5
3838

3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@v3
40+
uses: github/codeql-action/init@v4
4141
with:
4242
languages: ${{ matrix.language }}
4343
build-mode: ${{ matrix.build-mode }}
4444
queries: security-and-quality
4545

4646
- name: Perform CodeQL Analysis
47-
uses: github/codeql-action/analyze@v3
47+
uses: github/codeql-action/analyze@v4
4848
with:
4949
category: "/language:${{matrix.language}}"

go.mod

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ toolchain go1.24.1
66

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

1717
require (
1818
cloud.google.com/go v0.110.8 // indirect
1919
cloud.google.com/go/compute/metadata v0.3.0 // indirect
2020
cloud.google.com/go/iam v1.1.3 // indirect
2121
cloud.google.com/go/storage v1.35.1 // indirect
22-
github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c // indirect
22+
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
2323
github.com/ChrisTrenkamp/goxpath v0.0.0-20210404020558-97928f7e12b6 // indirect
2424
github.com/Microsoft/go-winio v0.6.2 // indirect
2525
github.com/agext/levenshtein v1.2.3 // indirect
@@ -28,13 +28,16 @@ require (
2828
github.com/armon/go-metrics v0.4.1 // indirect
2929
github.com/aws/aws-sdk-go v1.44.114 // indirect
3030
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
31+
github.com/bodgit/ntlmssp v0.0.0-20240506230425-31973bb52d9b // indirect
32+
github.com/bodgit/windows v1.0.1 // indirect
3133
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
3234
github.com/dylanmei/iso8601 v0.1.0 // indirect
3335
github.com/fatih/color v1.16.0 // indirect
3436
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
37+
github.com/go-logr/logr v1.4.1 // indirect
3538
github.com/go-resty/resty/v2 v2.16.5 // indirect
3639
github.com/gofrs/flock v0.8.1 // indirect
37-
github.com/gofrs/uuid v4.0.0+incompatible // indirect
40+
github.com/gofrs/uuid v4.4.0+incompatible // indirect
3841
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3942
github.com/golang/protobuf v1.5.4 // indirect
4043
github.com/google/go-querystring v1.1.0 // indirect
@@ -57,18 +60,25 @@ require (
5760
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect
5861
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
5962
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
63+
github.com/hashicorp/go-uuid v1.0.3 // indirect
6064
github.com/hashicorp/go-version v1.6.0 // indirect
6165
github.com/hashicorp/golang-lru v0.5.4 // indirect
6266
github.com/hashicorp/hcl v1.0.0 // indirect
6367
github.com/hashicorp/serf v0.10.1 // indirect
6468
github.com/hashicorp/vault/api v1.14.0 // indirect
6569
github.com/hashicorp/yamux v0.1.1 // indirect
70+
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
71+
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
72+
github.com/jcmturner/gofork v1.7.6 // indirect
73+
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
74+
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
75+
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
6676
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
6777
github.com/jmespath/go-jmespath v0.4.0 // indirect
6878
github.com/klauspost/compress v1.11.2 // indirect
6979
github.com/kr/fs v0.1.0 // indirect
7080
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect
71-
github.com/masterzen/winrm v0.0.0-20210623064412-3b76017826b0 // indirect
81+
github.com/masterzen/winrm v0.0.0-20250927112105-5f8e6c707321 // indirect
7282
github.com/mattn/go-colorable v0.1.13 // indirect
7383
github.com/mattn/go-isatty v0.0.20 // indirect
7484
github.com/mitchellh/go-fs v0.0.0-20180402235330-b7b9ca407fff // indirect
@@ -81,20 +91,21 @@ require (
8191
github.com/packer-community/winrmcp v0.0.0-20180921211025-c76d91c1e7db // indirect
8292
github.com/pkg/sftp v1.13.2 // indirect
8393
github.com/ryanuber/go-glob v1.0.0 // indirect
94+
github.com/tidwall/transform v0.0.0-20201103190739-32f242e2dbde // indirect
8495
github.com/ugorji/go/codec v1.2.6 // indirect
8596
github.com/ulikunitz/xz v0.5.14 // indirect
8697
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
8798
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
8899
go.opencensus.io v0.24.0 // indirect
89100
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
90-
golang.org/x/mod v0.27.0 // indirect
91-
golang.org/x/net v0.44.0 // indirect
101+
golang.org/x/mod v0.28.0 // indirect
102+
golang.org/x/net v0.45.0 // indirect
92103
golang.org/x/sync v0.17.0 // indirect
93-
golang.org/x/sys v0.36.0 // indirect
94-
golang.org/x/term v0.35.0 // indirect
95-
golang.org/x/text v0.29.0 // indirect
104+
golang.org/x/sys v0.37.0 // indirect
105+
golang.org/x/term v0.36.0 // indirect
106+
golang.org/x/text v0.30.0 // indirect
96107
golang.org/x/time v0.11.0 // indirect
97-
golang.org/x/tools v0.36.0 // indirect
108+
golang.org/x/tools v0.37.0 // indirect
98109
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
99110
google.golang.org/api v0.150.0 // indirect
100111
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect

0 commit comments

Comments
 (0)