Skip to content

Commit 9ab9a31

Browse files
committed
Update dependencies and tools to the latest
1 parent dd7a927 commit 9ab9a31

6 files changed

Lines changed: 117 additions & 138 deletions

File tree

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818

1919
# Publish Container Image
2020
- name: Login to GitHub Container Registry
21-
uses: docker/login-action@v3
21+
uses: docker/login-action@v4
2222
with:
2323
registry: ghcr.io
2424
username: ${{ github.actor }}
2525
password: ${{ secrets.GITHUB_TOKEN }}
2626
- name: Set up QEMU
27-
uses: docker/setup-qemu-action@v3
27+
uses: docker/setup-qemu-action@v4
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v3
29+
uses: docker/setup-buildx-action@v4
3030
- name: Docker build and push
31-
uses: docker/build-push-action@v6
31+
uses: docker/build-push-action@v7
3232
with:
3333
platforms: linux/amd64,linux/arm64
3434
push: true
@@ -37,7 +37,7 @@ jobs:
3737
# Publish Helm Chart
3838
- name: strip 'v' from tag for chart version
3939
id: tag
40-
uses: actions/github-script@v8
40+
uses: actions/github-script@v9
4141
with:
4242
script: |
4343
const tag = process.env.GITHUB_REF_NAME

.github/workflows/tagpr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717

1818
- name: Trigger Release Workflow(only when tagged)
19-
uses: actions/github-script@v8
19+
uses: actions/github-script@v9
2020
if: "steps.tagpr.outputs.tag != ''"
2121
with:
2222
script: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.25.5 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.26.2 AS builder
33

44
ARG TARGETOS TARGETARCH
55

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IMG ?= ghcr.io/pfnet-research/gcp-workload-identity-federation-webhook:$(TAG)
55
IMG_LATEST ?= ghcr.io/pfnet-research/gcp-workload-identity-federation-webhook:latest
66

77
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
8-
ENVTEST_K8S_VERSION = 1.35
8+
ENVTEST_K8S_VERSION = 1.36
99

1010
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
1111
ifeq (,$(shell go env GOBIN))
@@ -142,9 +142,9 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
142142
GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint
143143

144144
## Tool Versions
145-
KUSTOMIZE_VERSION ?= v5.8.0
146-
CONTROLLER_TOOLS_VERSION ?= v0.20.0
147-
GOLANGCI_LINT_VERSION ?= v2.8.0
145+
KUSTOMIZE_VERSION ?= v5.8.1
146+
CONTROLLER_TOOLS_VERSION ?= v0.20.1
147+
GOLANGCI_LINT_VERSION ?= v2.11.4
148148

149149
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
150150
.PHONY: kustomize

go.mod

Lines changed: 33 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,77 @@
11
module github.com/pfnet-research/gcp-workload-identity-federation-webhook
22

3-
go 1.25.5
3+
go 1.26.2
44

55
require (
66
github.com/MakeNowJust/heredoc v1.0.0
77
github.com/go-logr/logr v1.4.3
88
github.com/google/go-cmp v0.7.0
99
github.com/onsi/ginkgo/v2 v2.27.2
1010
github.com/onsi/gomega v1.38.2
11-
k8s.io/api v0.35.0
12-
k8s.io/apimachinery v0.35.0
13-
k8s.io/client-go v0.35.0
14-
k8s.io/component-base v0.35.0
15-
k8s.io/utils v0.0.0-20260106112306-0fe9cd71b2f8
16-
sigs.k8s.io/controller-runtime v0.22.4
11+
k8s.io/api v0.35.4
12+
k8s.io/apimachinery v0.35.4
13+
k8s.io/client-go v0.35.4
14+
k8s.io/component-base v0.35.4
15+
k8s.io/utils v0.0.0-20260319190234-28399d86e0b5
16+
sigs.k8s.io/controller-runtime v0.23.3
1717
)
1818

1919
require (
2020
github.com/Masterminds/semver/v3 v3.4.0 // indirect
2121
github.com/beorn7/perks v1.0.1 // indirect
2222
github.com/cespare/xxhash/v2 v2.3.0 // indirect
23-
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
24-
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
23+
github.com/davecgh/go-spew v1.1.1 // indirect
24+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
2525
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
2626
github.com/fsnotify/fsnotify v1.9.0 // indirect
2727
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
2828
github.com/go-logr/zapr v1.3.0 // indirect
29-
github.com/go-openapi/jsonpointer v0.22.4 // indirect
30-
github.com/go-openapi/jsonreference v0.21.4 // indirect
31-
github.com/go-openapi/swag v0.25.4 // indirect
32-
github.com/go-openapi/swag/cmdutils v0.25.4 // indirect
33-
github.com/go-openapi/swag/conv v0.25.4 // indirect
34-
github.com/go-openapi/swag/fileutils v0.25.4 // indirect
35-
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
36-
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
37-
github.com/go-openapi/swag/loading v0.25.4 // indirect
38-
github.com/go-openapi/swag/mangling v0.25.4 // indirect
39-
github.com/go-openapi/swag/netutils v0.25.4 // indirect
40-
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
41-
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
42-
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
29+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
30+
github.com/go-openapi/jsonreference v0.20.2 // indirect
31+
github.com/go-openapi/swag v0.23.0 // indirect
4332
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4433
github.com/google/btree v1.1.3 // indirect
45-
github.com/google/gnostic-models v0.7.1 // indirect
34+
github.com/google/gnostic-models v0.7.0 // indirect
4635
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
4736
github.com/google/uuid v1.6.0 // indirect
4837
github.com/inconshreveable/mousetrap v1.1.0 // indirect
38+
github.com/josharian/intern v1.0.0 // indirect
4939
github.com/json-iterator/go v1.1.12 // indirect
40+
github.com/mailru/easyjson v0.7.7 // indirect
5041
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5142
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5243
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5344
github.com/pmezard/go-difflib v1.0.0 // indirect
5445
github.com/prometheus/client_golang v1.23.2 // indirect
5546
github.com/prometheus/client_model v0.6.2 // indirect
56-
github.com/prometheus/common v0.67.5 // indirect
57-
github.com/prometheus/procfs v0.19.2 // indirect
47+
github.com/prometheus/common v0.66.1 // indirect
48+
github.com/prometheus/procfs v0.16.1 // indirect
5849
github.com/spf13/cobra v1.10.0 // indirect
59-
github.com/spf13/pflag v1.0.10 // indirect
50+
github.com/spf13/pflag v1.0.9 // indirect
6051
github.com/x448/float16 v0.8.4 // indirect
6152
go.uber.org/multierr v1.11.0 // indirect
62-
go.uber.org/zap v1.27.1 // indirect
53+
go.uber.org/zap v1.27.0 // indirect
6354
go.yaml.in/yaml/v2 v2.4.3 // indirect
6455
go.yaml.in/yaml/v3 v3.0.4 // indirect
65-
golang.org/x/mod v0.30.0 // indirect
66-
golang.org/x/net v0.48.0 // indirect
67-
golang.org/x/oauth2 v0.34.0 // indirect
68-
golang.org/x/sync v0.19.0 // indirect
69-
golang.org/x/sys v0.39.0 // indirect
70-
golang.org/x/term v0.38.0 // indirect
71-
golang.org/x/text v0.32.0 // indirect
72-
golang.org/x/time v0.14.0 // indirect
73-
golang.org/x/tools v0.39.0 // indirect
74-
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
75-
google.golang.org/protobuf v1.36.11 // indirect
56+
golang.org/x/mod v0.29.0 // indirect
57+
golang.org/x/net v0.47.0 // indirect
58+
golang.org/x/oauth2 v0.30.0 // indirect
59+
golang.org/x/sync v0.18.0 // indirect
60+
golang.org/x/sys v0.38.0 // indirect
61+
golang.org/x/term v0.37.0 // indirect
62+
golang.org/x/text v0.31.0 // indirect
63+
golang.org/x/time v0.9.0 // indirect
64+
golang.org/x/tools v0.38.0 // indirect
65+
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
66+
google.golang.org/protobuf v1.36.8 // indirect
7667
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
7768
gopkg.in/inf.v0 v0.9.1 // indirect
69+
gopkg.in/yaml.v3 v3.0.1 // indirect
7870
k8s.io/apiextensions-apiserver v0.35.0 // indirect
7971
k8s.io/klog/v2 v2.130.1 // indirect
80-
k8s.io/kube-openapi v0.0.0-20251125145642-4e65d59e963e // indirect
72+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
8173
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
8274
sigs.k8s.io/randfill v1.0.0 // indirect
83-
sigs.k8s.io/structured-merge-diff/v6 v6.3.1 // indirect
75+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
8476
sigs.k8s.io/yaml v1.6.0 // indirect
8577
)

0 commit comments

Comments
 (0)