Skip to content

Commit 602eb0d

Browse files
fix(deps): update uds package kit support dependencies (#46)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jordan McClintock <[email protected]>
1 parent fab223e commit 602eb0d

File tree

24 files changed

+108
-122
lines changed

24 files changed

+108
-122
lines changed

.github/actions/golang/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ description: "Setup Go binary and caching"
77
runs:
88
using: composite
99
steps:
10-
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
10+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
1111
with:
1212
go-version-file: 'go.mod'

.github/actions/install-uds-cli/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
udsCliVersion:
1010
description: The uds-cli version to install
1111
# renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver
12-
default: 0.23.0
12+
default: 0.27.8
1313

1414
runs:
1515
using: composite

.github/workflows/go-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup golang
3434
uses: ./.github/actions/golang
3535
- name: golangci-lint
36-
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # v6.5.1
36+
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
3737
with:
3838
args: --timeout=0
3939
govulncheck:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: defenseunicorns/setup-uds@ab842abcad1f7a3305c2538e3dd1950d0daacfa5 # v1.0.1
3030
with:
3131
# renovate: datasource=github-tags depName=defenseunicorns/uds-cli versioning=semver
32-
version: v0.23.0
32+
version: v0.27.8
3333

3434
- name: Install lint deps
3535
run: |

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
uses: ./.github/actions/golang
2727

2828
- name: Install syft
29-
uses: anchore/sbom-action/download-syft@f325610c9f50a54015d37c8d16cb3b0e2c8f4de0 # v0.18.0
29+
uses: anchore/sbom-action/download-syft@cee1b8e05ae5b2593a75e197229729eabaa9f8ec # v0.20.2
3030

3131
- name: Run GoReleaser
32-
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
32+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
3333
with:
3434
distribution: goreleaser
3535
version: latest

.github/workflows/scan-codeql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: uds run build-cli-linux-amd
5252

5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
54+
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
5555
env:
5656
CODEQL_EXTRACTOR_GO_BUILD_TRACING: on
5757
with:
@@ -60,6 +60,6 @@ jobs:
6060

6161

6262
- name: Perform CodeQL Analysis
63-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
63+
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
6464
with:
6565
category: "/language:${{matrix.language}}"

go.mod

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@ go 1.24.2
44

55
require (
66
github.com/CycloneDX/cyclonedx-go v0.9.2
7-
github.com/defenseunicorns/uds-cli v0.27.2
8-
github.com/go-git/go-git/v5 v5.16.0
9-
github.com/goccy/go-yaml v1.17.1
7+
github.com/defenseunicorns/uds-cli v0.27.8
8+
github.com/go-git/go-git/v5 v5.16.2
9+
github.com/goccy/go-yaml v1.18.0
10+
github.com/google/go-github/v69 v69.2.0
1011
github.com/mikefarah/yq/v4 v4.45.4
1112
github.com/olekukonko/tablewriter v0.0.5
1213
github.com/spf13/cobra v1.9.1
1314
github.com/stretchr/testify v1.10.0
14-
github.com/zarf-dev/zarf v0.54.0
15+
github.com/zarf-dev/zarf v0.57.0
1516
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
1617
)
1718

1819
require (
1920
github.com/golang-cz/devslog v0.0.13 // indirect
2021
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
22+
github.com/mikelolasagasti/xz v1.0.1 // indirect
2123
github.com/minio/minlz v1.0.0 // indirect
2224
github.com/phsym/console-slog v0.3.1 // indirect
2325
)
@@ -32,15 +34,14 @@ require (
3234
github.com/STARRY-S/zip v0.2.1 // indirect
3335
github.com/a8m/envsubst v1.4.3 // indirect
3436
github.com/alecthomas/participle/v2 v2.1.4 // indirect
35-
github.com/andybalholm/brotli v1.1.1 // indirect
37+
github.com/andybalholm/brotli v1.1.2-0.20250424173009-453214e765f3 // indirect
3638
github.com/bodgit/plumbing v1.3.0 // indirect
3739
github.com/bodgit/sevenzip v1.6.0 // indirect
3840
github.com/bodgit/windows v1.0.1 // indirect
3941
github.com/cloudflare/circl v1.6.1 // indirect
40-
github.com/containerd/console v1.0.4 // indirect
42+
github.com/containerd/console v1.0.5 // indirect
4143
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
4244
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
43-
github.com/defenseunicorns/pkg/helpers/v2 v2.0.3 // indirect
4445
github.com/dimchansky/utfbom v1.1.1 // indirect
4546
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
4647
github.com/elliotchance/orderedmap v1.8.0 // indirect
@@ -50,13 +51,12 @@ require (
5051
github.com/go-git/go-billy/v5 v5.6.2 // indirect
5152
github.com/goccy/go-json v0.10.5 // indirect
5253
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
53-
github.com/google/go-github/v69 v69.2.0
5454
github.com/google/go-querystring v1.1.0 // indirect
5555
github.com/gookit/color v1.5.4 // indirect
5656
github.com/hashicorp/errwrap v1.1.0 // indirect
5757
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5858
github.com/hashicorp/go-multierror v1.1.1 // indirect
59-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
59+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
6060
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
6161
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6262
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
@@ -69,36 +69,31 @@ require (
6969
github.com/mattn/go-colorable v0.1.14 // indirect
7070
github.com/mattn/go-isatty v0.0.20 // indirect
7171
github.com/mattn/go-runewidth v0.0.16 // indirect
72-
github.com/mholt/archives v0.1.1 // indirect
72+
github.com/mholt/archives v0.1.3 // indirect
7373
github.com/nwaples/rardecode/v2 v2.1.0 // indirect
74-
github.com/otiai10/copy v1.14.1 // indirect
75-
github.com/otiai10/mint v1.6.3 // indirect
7674
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
77-
github.com/pierrec/lz4/v4 v4.1.21 // indirect
75+
github.com/pierrec/lz4/v4 v4.1.22 // indirect
7876
github.com/pjbgf/sha1cd v0.3.2 // indirect
7977
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
8078
github.com/pterm/pterm v0.12.80 // indirect
8179
github.com/rivo/uniseg v0.4.7 // indirect
82-
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
80+
github.com/sergi/go-diff v1.4.0 // indirect
8381
github.com/skeema/knownhosts v1.3.1 // indirect
8482
github.com/sorairolake/lzip-go v0.3.5 // indirect
8583
github.com/spf13/pflag v1.0.6 // indirect
86-
github.com/therootcompany/xz v1.0.1 // indirect
8784
github.com/ulikunitz/xz v0.5.12 // indirect
8885
github.com/xanzy/ssh-agent v0.3.3 // indirect
8986
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
9087
github.com/yuin/gopher-lua v1.1.1 // indirect
91-
gitlab.com/gitlab-org/api/client-go v0.128.0
88+
gitlab.com/gitlab-org/api/client-go v0.134.0
9289
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
93-
golang.org/x/crypto v0.38.0 // indirect
94-
golang.org/x/net v0.40.0 // indirect
90+
golang.org/x/crypto v0.39.0 // indirect
91+
golang.org/x/net v0.41.0 // indirect
9592
golang.org/x/oauth2 v0.30.0 // indirect
96-
golang.org/x/sync v0.14.0 // indirect
9793
golang.org/x/sys v0.33.0 // indirect
9894
golang.org/x/term v0.32.0 // indirect
99-
golang.org/x/text v0.25.0 // indirect
100-
golang.org/x/time v0.11.0 // indirect
95+
golang.org/x/text v0.26.0 // indirect
96+
golang.org/x/time v0.12.0 // indirect
10197
gopkg.in/warnings.v0 v0.1.2 // indirect
10298
gopkg.in/yaml.v3 v3.0.1 // indirect
103-
oras.land/oras-go/v2 v2.6.0 // indirect
10499
)

0 commit comments

Comments
 (0)