Skip to content

Commit 9de6e34

Browse files
fix(deps): update uds package kit support dependencies
| datasource | package | from | to | | ----------- | ----------------------------------------------------------- | ----------- | ----------- | | github-tags | actions/checkout | v5.0.0 | v6.0.1 | | github-tags | actions/setup-go | v6.0.0 | v6.2.0 | | github-tags | anchore/sbom-action | v0.20.6 | v0.21.1 | | docker | curlimages/curl | 8.16.0 | 8.18.0 | | github-tags | defenseunicorns/uds-cli | v0.27.13 | v0.27.21 | | github-tags | defenseunicorns/uds-common | v1.20.3 | v1.23.0 | | go | github.com/CycloneDX/cyclonedx-go | v0.9.2 | v0.9.3 | | go | github.com/defenseunicorns/uds-cli | v0.27.13 | v0.27.21 | | go | github.com/go-git/go-git/v5 | v5.16.2 | v5.16.4 | | go | github.com/goccy/go-yaml | v1.18.0 | v1.19.2 | | go | github.com/google/go-github/v69 | v69.2.0 | v81.0.0 | | go | github.com/google/go-github/v73 | v73.0.0 | v81.0.0 | | go | github.com/mikefarah/yq/v4 | v4.47.2 | v4.50.1 | | go | github.com/olekukonko/tablewriter | v1.0.9 | v1.1.2 | | go | github.com/spf13/cobra | v1.10.1 | v1.10.2 | | go | github.com/zarf-dev/zarf | v0.61.2 | v0.69.0 | | github-tags | github/codeql-action | v3.30.3 | v4.31.10 | | go | gitlab.com/gitlab-org/api/client-go | v0.146.0 | v1.14.0 | | go | go.yaml.in/yaml/v4 | v4.0.0-rc.2 | v4.0.0-rc.3 | | go | golang.org/x/oauth2 | v0.30.0 | v0.34.0 | | github-tags | golangci/golangci-lint-action | v8.0.0 | v9.2.0 | | helm | mattermost-enterprise-edition | 2.6.81 | 2.6.87 | | docker | mattermost/mattermost-enterprise-edition | 10.12.0 | 11.3.0 | | docker | registry1.dso.mil/ironbank/opensource/mattermost/mattermost | 10.12.0 | 11.3.0 | | docker | registry1.dso.mil/ironbank/redhat/ubi/ubi9-minimal | 9.6 | 9.7 |
1 parent 3c2c109 commit 9de6e34

File tree

16 files changed

+176
-63
lines changed

16 files changed

+176
-63
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@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
10+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.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.27.13
12+
default: 0.27.21
1313

1414
runs:
1515
using: composite

.github/workflows/go-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ jobs:
2929
name: lint
3030
runs-on: ${{ matrix.os }}
3131
steps:
32-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
32+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3333
- name: Setup golang
3434
uses: ./.github/actions/golang
3535
- name: golangci-lint
36-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
36+
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
3737
with:
3838
args: --timeout=0
3939
govulncheck:
4040
runs-on: ubuntu-latest
4141
name: Run govulncheck
4242
steps:
43-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
43+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444
- name: Setup golang
4545
uses: ./.github/actions/golang
4646
- id: govulncheck

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2525
with:
2626
fetch-depth: 0
2727

2828
- name: Install UDS CLI
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.27.13
32+
version: v0.27.21
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
@@ -18,15 +18,15 @@ jobs:
1818
contents: write
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222
with:
2323
fetch-depth: 0
2424

2525
- name: Setup golang
2626
uses: ./.github/actions/golang
2727

2828
- name: Install syft
29-
uses: anchore/sbom-action/download-syft@f8bdd1d8ac5e901a77a92f111440fdb1b593736b # v0.20.6
29+
uses: anchore/sbom-action/download-syft@0b82b0b1a22399a1c542d4d656f70cd903571b5c # v0.21.1
3030

3131
- name: Run GoReleaser
3232
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0

.github/workflows/scan-codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
42+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4343

4444
- name: Setup golang
4545
uses: ./.github/actions/golang
@@ -51,7 +51,7 @@ jobs:
5151
run: uds run build-cli-linux-amd
5252

5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
54+
uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
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@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
63+
uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
6464
with:
6565
category: "/language:${{matrix.language}}"

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
29+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3030
with:
3131
fetch-depth: 0
3232

go.mod

Lines changed: 51 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,75 @@
11
module github.com/defenseunicorns/uds-pk
22

3-
go 1.24.6
3+
go 1.25.5
44

55
require (
6-
github.com/CycloneDX/cyclonedx-go v0.9.2
7-
github.com/defenseunicorns/uds-cli v0.27.13
8-
github.com/go-git/go-git/v5 v5.16.2
9-
github.com/goccy/go-yaml v1.18.0
6+
github.com/CycloneDX/cyclonedx-go v0.9.3
7+
github.com/defenseunicorns/uds-cli v0.27.21
8+
github.com/go-git/go-git/v5 v5.16.4
9+
github.com/goccy/go-yaml v1.19.2
1010
github.com/google/go-github/v69 v69.2.0
1111
github.com/google/go-github/v73 v73.0.0
12-
github.com/mikefarah/yq/v4 v4.47.2
13-
github.com/olekukonko/tablewriter v1.0.9
14-
github.com/spf13/cobra v1.10.1
12+
github.com/google/go-github/v81 v81.0.0
13+
github.com/mikefarah/yq/v4 v4.50.1
14+
github.com/olekukonko/tablewriter v1.1.2
15+
github.com/spf13/cobra v1.10.2
1516
github.com/stretchr/testify v1.11.1
16-
github.com/zarf-dev/zarf v0.61.2
17-
go.yaml.in/yaml/v4 v4.0.0-rc.2
18-
golang.org/x/oauth2 v0.30.0
17+
github.com/zarf-dev/zarf v0.69.0
18+
go.yaml.in/yaml/v4 v4.0.0-rc.3
19+
golang.org/x/oauth2 v0.34.0
1920
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
2021
)
2122

2223
require (
24+
github.com/agext/levenshtein v1.2.3 // indirect
25+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
26+
github.com/clipperhouse/displaywidth v0.6.1 // indirect
27+
github.com/clipperhouse/stringish v0.1.1 // indirect
28+
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
2329
github.com/go-ini/ini v1.67.0 // indirect
30+
github.com/golang-cz/devslog v0.0.15 // indirect
31+
github.com/google/go-cmp v0.7.0 // indirect
32+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
2433
github.com/mikelolasagasti/xz v1.0.1 // indirect
25-
github.com/minio/minlz v1.0.0 // indirect
34+
github.com/minio/minlz v1.0.1 // indirect
35+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
36+
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
2637
github.com/olekukonko/errors v1.1.0 // indirect
27-
github.com/olekukonko/ll v0.0.9 // indirect
38+
github.com/olekukonko/ll v0.1.3 // indirect
39+
github.com/phsym/console-slog v0.3.1 // indirect
40+
github.com/spf13/afero v1.15.0 // indirect
41+
github.com/zclconf/go-cty v1.17.0 // indirect
2842
go.yaml.in/yaml/v3 v3.0.4 // indirect
29-
golang.org/x/exp v0.0.0-20250808145144-a408d31f581a // indirect
43+
golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93 // indirect
44+
golang.org/x/mod v0.31.0 // indirect
45+
golang.org/x/sync v0.19.0 // indirect
46+
golang.org/x/tools v0.40.0 // indirect
3047
)
3148

3249
require (
3350
dario.cat/mergo v1.0.2 // indirect
3451
github.com/Microsoft/go-winio v0.6.2 // indirect
35-
github.com/ProtonMail/go-crypto v1.2.0 // indirect
36-
github.com/STARRY-S/zip v0.2.1 // indirect
52+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
53+
github.com/STARRY-S/zip v0.2.3 // indirect
3754
github.com/a8m/envsubst v1.4.3 // indirect
3855
github.com/alecthomas/participle/v2 v2.1.4 // indirect
39-
github.com/andybalholm/brotli v1.1.2-0.20250424173009-453214e765f3 // indirect
56+
github.com/andybalholm/brotli v1.2.0 // indirect
4057
github.com/bodgit/plumbing v1.3.0 // indirect
41-
github.com/bodgit/sevenzip v1.6.0 // indirect
58+
github.com/bodgit/sevenzip v1.6.1 // indirect
4259
github.com/bodgit/windows v1.0.1 // indirect
4360
github.com/cloudflare/circl v1.6.1 // indirect
44-
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
61+
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
4562
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4663
github.com/dimchansky/utfbom v1.1.1 // indirect
4764
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
4865
github.com/elliotchance/orderedmap v1.8.0 // indirect
4966
github.com/emirpasic/gods v1.18.1 // indirect
5067
github.com/fatih/color v1.18.0 // indirect
5168
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
52-
github.com/go-git/go-billy/v5 v5.6.2 // indirect
69+
github.com/go-git/go-billy/v5 v5.7.0 // indirect
5370
github.com/goccy/go-json v0.10.5 // indirect
5471
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
55-
github.com/google/go-querystring v1.1.0 // indirect
72+
github.com/google/go-querystring v1.2.0 // indirect
5673
github.com/hashicorp/errwrap v1.1.0 // indirect
5774
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5875
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -62,33 +79,33 @@ require (
6279
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
6380
github.com/jinzhu/copier v0.4.0 // indirect
6481
github.com/kevinburke/ssh_config v1.2.0 // indirect
65-
github.com/klauspost/compress v1.18.0 // indirect
82+
github.com/klauspost/compress v1.18.1 // indirect
6683
github.com/klauspost/pgzip v1.2.6 // indirect
6784
github.com/magiconair/properties v1.8.10 // indirect
6885
github.com/mattn/go-colorable v0.1.14 // indirect
6986
github.com/mattn/go-isatty v0.0.20 // indirect
70-
github.com/mattn/go-runewidth v0.0.16 // indirect
71-
github.com/mholt/archives v0.1.3 // indirect
72-
github.com/nwaples/rardecode/v2 v2.1.0 // indirect
87+
github.com/mattn/go-runewidth v0.0.19 // indirect
88+
github.com/mholt/archives v0.1.5 // indirect
89+
github.com/nwaples/rardecode/v2 v2.2.0 // indirect
7390
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
7491
github.com/pierrec/lz4/v4 v4.1.22 // indirect
75-
github.com/pjbgf/sha1cd v0.3.2 // indirect
92+
github.com/pjbgf/sha1cd v0.4.0 // indirect
7693
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7794
github.com/rivo/uniseg v0.4.7 // indirect
7895
github.com/sergi/go-diff v1.4.0 // indirect
7996
github.com/skeema/knownhosts v1.3.1 // indirect
80-
github.com/sorairolake/lzip-go v0.3.5 // indirect
97+
github.com/sorairolake/lzip-go v0.3.8 // indirect
8198
github.com/spf13/pflag v1.0.10 // indirect
82-
github.com/ulikunitz/xz v0.5.14 // indirect
99+
github.com/ulikunitz/xz v0.5.15 // indirect
83100
github.com/xanzy/ssh-agent v0.3.3 // indirect
84101
github.com/yuin/gopher-lua v1.1.1 // indirect
85-
gitlab.com/gitlab-org/api/client-go v0.146.0
102+
gitlab.com/gitlab-org/api/client-go v1.14.0
86103
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
87-
golang.org/x/crypto v0.41.0 // indirect
88-
golang.org/x/net v0.43.0 // indirect
89-
golang.org/x/sys v0.35.0 // indirect
90-
golang.org/x/text v0.28.0 // indirect
91-
golang.org/x/time v0.12.0 // indirect
104+
golang.org/x/crypto v0.46.0 // indirect
105+
golang.org/x/net v0.48.0 // indirect
106+
golang.org/x/sys v0.39.0 // indirect
107+
golang.org/x/text v0.32.0 // indirect
108+
golang.org/x/time v0.14.0 // indirect
92109
gopkg.in/warnings.v0 v0.1.2 // indirect
93110
gopkg.in/yaml.v3 v3.0.1 // indirect
94111
)

0 commit comments

Comments
 (0)