Skip to content

Commit b1b9d20

Browse files
Release v1.7.0 (#376)
* build(deps): bump github.com/hashicorp/packer-plugin-sdk (#369) Bumps [github.com/hashicorp/packer-plugin-sdk](https://github.com/hashicorp/packer-plugin-sdk) from 0.6.3 to 0.6.4. - [Release notes](https://github.com/hashicorp/packer-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/packer-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](hashicorp/packer-plugin-sdk@v0.6.3...v0.6.4) --- updated-dependencies: - dependency-name: github.com/hashicorp/packer-plugin-sdk dependency-version: 0.6.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump github.com/linode/linodego from 1.59.0 to 1.60.0 (#365) Bumps [github.com/linode/linodego](https://github.com/linode/linodego) from 1.59.0 to 1.60.0. - [Release notes](https://github.com/linode/linodego/releases) - [Commits](linode/linodego@v1.59.0...v1.60.0) --- updated-dependencies: - dependency-name: github.com/linode/linodego dependency-version: 1.60.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump github/codeql-action from 3 to 4 (#366) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump golang.org/x/oauth2 from 0.31.0 to 0.32.0 (#367) Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.31.0 to 0.32.0. - [Commits](golang/oauth2@v0.31.0...v0.32.0) --- updated-dependencies: - dependency-name: golang.org/x/oauth2 dependency-version: 0.32.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump github.com/linode/linodego from 1.60.0 to 1.61.0 (#374) Bumps [github.com/linode/linodego](https://github.com/linode/linodego) from 1.60.0 to 1.61.0. - [Release notes](https://github.com/linode/linodego/releases) - [Commits](linode/linodego@v1.60.0...v1.61.0) --- updated-dependencies: - dependency-name: github.com/linode/linodego dependency-version: 1.61.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump golang.org/x/oauth2 from 0.32.0 to 0.33.0 (#373) Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.32.0 to 0.33.0. - [Commits](golang/oauth2@v0.32.0...v0.33.0) --- updated-dependencies: - dependency-name: golang.org/x/oauth2 dependency-version: 0.33.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump golangci/golangci-lint-action from 8 to 9 (#375) Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 8 to 9. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 754d62e commit b1b9d20

File tree

4 files changed

+76
-30
lines changed

4 files changed

+76
-30
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}}"

.github/workflows/go-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/setup-go@v6
3333
with:
3434
go-version: stable
35-
- uses: golangci/golangci-lint-action@v8
35+
- uses: golangci/golangci-lint-action@v9
3636
with:
3737
only-new-issues: true
3838
check-fmt:

go.mod

Lines changed: 18 additions & 7 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.59.0
9+
github.com/hashicorp/packer-plugin-sdk v0.6.4
10+
github.com/linode/linodego v1.61.0
1111
github.com/mitchellh/mapstructure v1.5.0
1212
github.com/zclconf/go-cty v1.16.3
1313
golang.org/x/crypto v0.43.0
14-
golang.org/x/oauth2 v0.31.0
14+
golang.org/x/oauth2 v0.33.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,14 +91,15 @@ 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
90101
golang.org/x/mod v0.28.0 // indirect
91-
golang.org/x/net v0.45.0 // indirect
102+
golang.org/x/net v0.46.0 // indirect
92103
golang.org/x/sync v0.17.0 // indirect
93104
golang.org/x/sys v0.37.0 // indirect
94105
golang.org/x/term v0.36.0 // indirect

0 commit comments

Comments
 (0)