Skip to content

Commit b58465e

Browse files
committed
upgrade dependencies
1 parent 875de78 commit b58465e

File tree

9 files changed

+119
-93
lines changed

9 files changed

+119
-93
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# syntax=docker.io/docker/dockerfile:1.18
1+
# syntax=docker.io/docker/dockerfile:1.21
22

3-
# see https://github.com/devcontainers/images/tree/main/src/base-debian/history
4-
FROM mcr.microsoft.com/devcontainers/base:2.0.1-trixie
3+
# see https://github.com/devcontainers/images/blob/main/src/base-debian/manifest.json
4+
FROM mcr.microsoft.com/devcontainers/base:2.1.6-trixie
55

66
RUN <<'EOF'
77
#!/usr/bin/bash

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"postCreateCommand": "bash .devcontainer/setup.sh",
1414
"features": {
1515
"ghcr.io/devcontainers/features/go:1": {
16-
"version": "1.25.1"
16+
"version": "1.26.0"
1717
},
1818
"ghcr.io/devcontainers-extra/features/packer-asdf:2": {
19-
"version": "1.14.1"
19+
"version": "1.15.0"
2020
}
2121
},
2222
"customizations": {

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fetch-depth: 0
1313
- uses: actions/setup-go@v6
1414
with:
15-
go-version: '1.25.1'
15+
go-version: '1.26.0'
1616
- name: Set up msys2
1717
uses: msys2/setup-msys2@v2
1818
with:
@@ -30,7 +30,7 @@ jobs:
3030
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
3131
run: msys2 ./ci-release.sh
3232
- name: Archive
33-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v7
3434
with:
3535
name: artifacts
3636
path: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PLUGIN_PATH := dist/packer-plugin-windows-update_$(GOHOSTOS)_$(GOHOSTARCH)_$(GOH
99

1010
# see https://github.com/goreleaser/goreleaser
1111
# renovate: datasource=github-releases depName=goreleaser/goreleaser extractVersion=^v?(?<version>2\..+)
12-
GORELEASER_VERSION := 2.12.2
12+
GORELEASER_VERSION := 2.14.1
1313

1414
all: clean build
1515

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This is a Packer plugin for installing Windows updates (akin to [rgl/vagrant-windows-update](https://github.com/rgl/vagrant-windows-update)).
66

7-
**NB** This was only tested with Packer 1.14.1 and the images at [rgl/windows-vagrant](https://github.com/rgl/windows-vagrant), so YMMV.
7+
**NB** This was only tested with Packer 1.15.0 and the images at [rgl/windows-vagrant](https://github.com/rgl/windows-vagrant), so YMMV.
88

99
# Usage
1010

@@ -14,7 +14,7 @@ Configure your packer template to require a [release version of the plugin](http
1414
packer {
1515
required_plugins {
1616
windows-update = {
17-
version = "0.17.2"
17+
version = "0.17.3"
1818
source = "github.com/rgl/windows-update"
1919
}
2020
}

go.mod

Lines changed: 34 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,40 @@
11
module github.com/rgl/packer-plugin-windows-update
22

3-
go 1.25.1
3+
go 1.26.0
44

55
require (
66
github.com/hashicorp/hcl/v2 v2.24.0
7-
github.com/hashicorp/packer-plugin-sdk v0.6.3
8-
github.com/zclconf/go-cty v1.16.4
7+
github.com/hashicorp/packer-plugin-sdk v0.6.5
8+
github.com/zclconf/go-cty v1.18.0
99
)
1010

1111
require (
1212
github.com/agext/levenshtein v1.2.3 // indirect
1313
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
1414
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
1515
github.com/armon/go-metrics v0.4.1 // indirect
16-
github.com/aws/aws-sdk-go v1.55.8 // indirect
16+
github.com/aws/aws-sdk-go-v2 v1.41.2 // indirect
17+
github.com/aws/aws-sdk-go-v2/config v1.32.10 // indirect
18+
github.com/aws/aws-sdk-go-v2/credentials v1.19.10 // indirect
19+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.18 // indirect
20+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.18 // indirect
21+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.18 // indirect
22+
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
23+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.5 // indirect
24+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.18 // indirect
25+
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.41.2 // indirect
26+
github.com/aws/aws-sdk-go-v2/service/signin v1.0.6 // indirect
27+
github.com/aws/aws-sdk-go-v2/service/sso v1.30.11 // indirect
28+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.15 // indirect
29+
github.com/aws/aws-sdk-go-v2/service/sts v1.41.7 // indirect
30+
github.com/aws/smithy-go v1.24.1 // indirect
1731
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
1832
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
1933
github.com/fatih/color v1.18.0 // indirect
20-
github.com/go-jose/go-jose/v4 v4.1.2 // indirect
34+
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
35+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
2136
github.com/google/uuid v1.6.0 // indirect
22-
github.com/hashicorp/consul/api v1.32.1 // indirect
37+
github.com/hashicorp/consul/api v1.33.4 // indirect
2338
github.com/hashicorp/errwrap v1.1.0 // indirect
2439
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2540
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
@@ -33,15 +48,14 @@ require (
3348
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 // indirect
3449
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
3550
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
36-
github.com/hashicorp/go-version v1.7.0 // indirect
51+
github.com/hashicorp/go-version v1.8.0 // indirect
3752
github.com/hashicorp/golang-lru v1.0.2 // indirect
3853
github.com/hashicorp/hcl v1.0.1-vault-7 // indirect
3954
github.com/hashicorp/serf v0.10.2 // indirect
40-
github.com/hashicorp/vault/api v1.20.0 // indirect
55+
github.com/hashicorp/vault/api v1.22.0 // indirect
4156
github.com/hashicorp/yamux v0.1.2 // indirect
4257
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
43-
github.com/jmespath/go-jmespath v0.4.0 // indirect
44-
github.com/klauspost/compress v1.18.0 // indirect
58+
github.com/klauspost/compress v1.18.4 // indirect
4559
github.com/mattn/go-colorable v0.1.14 // indirect
4660
github.com/mattn/go-isatty v0.0.20 // indirect
4761
github.com/mitchellh/go-homedir v1.1.0 // indirect
@@ -51,20 +65,19 @@ require (
5165
github.com/mitchellh/mapstructure v1.5.0 // indirect
5266
github.com/mitchellh/reflectwalk v1.0.2 // indirect
5367
github.com/ryanuber/go-glob v1.0.0 // indirect
54-
github.com/ugorji/go/codec v1.3.0 // indirect
68+
github.com/ugorji/go/codec v1.3.1 // indirect
5569
github.com/ulikunitz/xz v0.5.15 // indirect
5670
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5771
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
58-
golang.org/x/crypto v0.41.0 // indirect
59-
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
60-
golang.org/x/mod v0.27.0 // indirect
61-
golang.org/x/net v0.43.0 // indirect
62-
golang.org/x/sync v0.16.0 // indirect
63-
golang.org/x/sys v0.35.0 // indirect
64-
golang.org/x/text v0.28.0 // indirect
65-
golang.org/x/time v0.12.0 // indirect
66-
golang.org/x/tools v0.36.0 // indirect
67-
google.golang.org/protobuf v1.36.8 // indirect
72+
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa // indirect
73+
golang.org/x/mod v0.33.0 // indirect
74+
golang.org/x/net v0.51.0 // indirect
75+
golang.org/x/sync v0.19.0 // indirect
76+
golang.org/x/sys v0.41.0 // indirect
77+
golang.org/x/text v0.34.0 // indirect
78+
golang.org/x/time v0.14.0 // indirect
79+
golang.org/x/tools v0.42.0 // indirect
80+
google.golang.org/protobuf v1.36.11 // indirect
6881
)
6982

7083
replace github.com/zclconf/go-cty => github.com/nywilken/go-cty v1.13.3 // added by packer-sdc fix as noted in github.com/hashicorp/packer-plugin-sdk/issues/187

0 commit comments

Comments
 (0)