Skip to content

Commit fd29e88

Browse files
fix(deps): update all non-major dependencies
1 parent 297b447 commit fd29e88

File tree

13 files changed

+91
-88
lines changed

13 files changed

+91
-88
lines changed

.github/workflows/scan-codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@c0d1daa7f7e14667747d73a7dbbe8c074bc8bfe2 # v2.22.9
46+
uses: github/codeql-action/init@03e7845b7bfcd5e7fb63d1ae8c61b0e791134fab # v2.22.11
4747
env:
4848
CODEQL_EXTRACTOR_GO_BUILD_TRACING: on
4949
with:
@@ -54,6 +54,6 @@ jobs:
5454
run: make build-cli-linux-amd
5555

5656
- name: Perform CodeQL Analysis
57-
uses: github/codeql-action/analyze@c0d1daa7f7e14667747d73a7dbbe8c074bc8bfe2 # v2.22.9
57+
uses: github/codeql-action/analyze@03e7845b7bfcd5e7fb63d1ae8c61b0e791134fab # v2.22.11
5858
with:
5959
category: "/language:${{matrix.language}}"

.github/workflows/scorecard.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ jobs:
4545

4646
# Upload the results to GitHub's code scanning dashboard.
4747
- name: "Upload to code-scanning"
48-
uses: github/codeql-action/upload-sarif@c0d1daa7f7e14667747d73a7dbbe8c074bc8bfe2 # v2.22.9
48+
uses: github/codeql-action/upload-sarif@03e7845b7bfcd5e7fb63d1ae8c61b0e791134fab # v2.22.11
4949
with:
5050
sarif_file: results.sarif

docs-website/package-lock.json

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-website/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"@docusaurus/core": "2.4.3",
2020
"@docusaurus/preset-classic": "2.4.3",
2121
"@docusaurus/theme-mermaid": "2.4.3",
22-
"@easyops-cn/docusaurus-search-local": "^0.38.0",
23-
"prism-react-renderer": "2.3.0",
22+
"@easyops-cn/docusaurus-search-local": "^0.39.0",
23+
"prism-react-renderer": "2.3.1",
2424
"custom-loaders": "file:plugins/custom-loaders"
2525
},
2626
"devDependencies": {

examples/argocd/zarf.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ components:
2121
required: true
2222
charts:
2323
- name: argocd-apps
24-
version: 1.4.1
24+
version: 1.8.7
2525
namespace: podinfo
2626
url: https://argoproj.github.io/argo-helm
2727
releaseName: argocd-apps

examples/big-bang/yolo/zarf.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: yolo-big-bang
55
description: Deploy Big Bang Core in YOLO mode
66
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
7-
version: 2.16.0
7+
version: 2.17.0
88
url: https://p1.dso.mil/products/big-bang
99
architecture: amd64
1010
yolo: true
@@ -33,7 +33,7 @@ components:
3333
extensions:
3434
bigbang:
3535
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
36-
version: 2.16.0
36+
version: 2.17.0
3737
valuesFiles:
3838
- credentials.yaml
3939
- ../config/ingress.yaml

examples/big-bang/zarf.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ metadata:
33
name: big-bang-example
44
description: Deploy Big Bang Core
55
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
6-
version: 2.16.0
6+
version: 2.17.0
77
url: https://p1.dso.mil/products/big-bang
88
# Big Bang / Iron Bank are only amd64
99
architecture: amd64
@@ -44,7 +44,7 @@ components:
4444
extensions:
4545
bigbang:
4646
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
47-
version: 2.16.0
47+
version: 2.17.0
4848
valuesFiles:
4949
# Istio configs
5050
- config/ingress.yaml

examples/helm-charts/chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ backends: []
88

99
image:
1010
repository: ghcr.io/stefanprodan/podinfo
11-
tag: 6.4.0
11+
tag: 6.5.4
1212
pullPolicy: IfNotPresent
1313

1414
ui:

examples/longhorn/zarf.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ components:
4141
charts:
4242
- name: longhorn
4343
url: https://charts.longhorn.io
44-
version: 1.4.0
44+
version: 1.5.3
4545
namespace: longhorn-system
4646
valuesFiles:
4747
- values.yaml

examples/variables/simple-terraform.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
required_providers {
99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 5.30.0"
11+
version = "~> 5.31.0"
1212
}
1313
}
1414
}

go.mod

+19-18
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ require (
2121
github.com/docker/cli v24.0.7+incompatible
2222
github.com/fairwindsops/pluto/v5 v5.18.4
2323
github.com/fatih/color v1.16.0
24-
github.com/fluxcd/helm-controller/api v0.36.2
25-
github.com/fluxcd/source-controller/api v1.2.1
26-
github.com/go-git/go-git/v5 v5.10.1
24+
github.com/fluxcd/helm-controller/api v0.37.1
25+
github.com/fluxcd/source-controller/api v1.2.3
26+
github.com/go-git/go-git/v5 v5.11.0
2727
github.com/go-logr/logr v1.3.0
2828
github.com/goccy/go-yaml v1.11.2
2929
github.com/gofrs/flock v0.8.1
@@ -35,7 +35,7 @@ require (
3535
github.com/otiai10/copy v1.14.0
3636
github.com/pkg/errors v0.9.1
3737
github.com/prometheus/client_golang v1.17.0
38-
github.com/pterm/pterm v0.12.71
38+
github.com/pterm/pterm v0.12.72
3939
github.com/sergi/go-diff v1.3.1
4040
github.com/sigstore/cosign/v2 v2.2.2
4141
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.7.6
@@ -47,16 +47,16 @@ require (
4747
github.com/spf13/viper v1.18.1
4848
github.com/stretchr/testify v1.8.4
4949
github.com/xeipuuv/gojsonschema v1.2.0
50-
golang.org/x/crypto v0.16.0
50+
golang.org/x/crypto v0.17.0
5151
golang.org/x/sync v0.5.0
5252
golang.org/x/term v0.15.0
53-
helm.sh/helm/v3 v3.13.2
54-
k8s.io/api v0.28.4
55-
k8s.io/apimachinery v0.28.4
56-
k8s.io/client-go v0.28.4
57-
k8s.io/component-base v0.28.4
53+
helm.sh/helm/v3 v3.13.3
54+
k8s.io/api v0.29.0
55+
k8s.io/apimachinery v0.29.0
56+
k8s.io/client-go v0.29.0
57+
k8s.io/component-base v0.29.0
5858
k8s.io/klog/v2 v2.110.1
59-
k8s.io/kubectl v0.28.4
59+
k8s.io/kubectl v0.29.0
6060
oras.land/oras-go/v2 v2.3.1
6161
sigs.k8s.io/kustomize/api v0.16.0
6262
sigs.k8s.io/kustomize/kyaml v0.16.0
@@ -220,7 +220,7 @@ require (
220220
github.com/fatih/camelcase v1.0.0 // indirect
221221
github.com/felixge/fgprof v0.9.3 // indirect
222222
github.com/fluxcd/pkg/apis/acl v0.1.0 // indirect
223-
github.com/fluxcd/pkg/apis/kustomize v1.1.1 // indirect
223+
github.com/fluxcd/pkg/apis/kustomize v1.2.0 // indirect
224224
github.com/fluxcd/pkg/apis/meta v1.2.0 // indirect
225225
github.com/fsnotify/fsnotify v1.7.0 // indirect
226226
github.com/fvbommel/sortorder v1.1.0 // indirect
@@ -274,6 +274,7 @@ require (
274274
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
275275
github.com/gookit/color v1.5.4 // indirect
276276
github.com/gorilla/mux v1.8.1 // indirect
277+
github.com/gorilla/websocket v1.5.0 // indirect
277278
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
278279
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b // indirect
279280
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -487,12 +488,12 @@ require (
487488
gopkg.in/yaml.v2 v2.4.0 // indirect
488489
gopkg.in/yaml.v3 v3.0.1 // indirect
489490
gorm.io/gorm v1.25.5 // indirect
490-
k8s.io/apiextensions-apiserver v0.28.3 // indirect
491-
k8s.io/apiserver v0.28.3 // indirect
492-
k8s.io/cli-runtime v0.28.4 // indirect
493-
k8s.io/component-helpers v0.28.4 // indirect
491+
k8s.io/apiextensions-apiserver v0.28.4 // indirect
492+
k8s.io/apiserver v0.28.4 // indirect
493+
k8s.io/cli-runtime v0.29.0 // indirect
494+
k8s.io/component-helpers v0.29.0 // indirect
494495
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
495-
k8s.io/metrics v0.28.4 // indirect
496+
k8s.io/metrics v0.29.0 // indirect
496497
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
497498
modernc.org/libc v1.29.0 // indirect
498499
modernc.org/mathutil v1.6.0 // indirect
@@ -503,5 +504,5 @@ require (
503504
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
504505
sigs.k8s.io/kustomize/kustomize/v5 v5.0.4-0.20230601165947-6ce0bf390ce3 // indirect
505506
sigs.k8s.io/release-utils v0.7.7 // indirect
506-
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
507+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
507508
)

0 commit comments

Comments
 (0)