Skip to content

Commit 62f3acd

Browse files
fix(deps): update uds package kit support dependencies (#52)
* fix(deps): update uds package kit support dependencies | datasource | package | from | to | | ----------- | ----------------------------------------------------------- | -------- | -------- | | github-tags | actions/checkout | v4.2.2 | v5.0.0 | | github-tags | actions/setup-go | v5.5.0 | v6.0.0 | | github-tags | anchore/sbom-action | v0.20.2 | v0.20.6 | | docker | curlimages/curl | 8.14.1 | 8.16.0 | | github-tags | defenseunicorns/uds-cli | v0.27.8 | v0.27.13 | | github-tags | defenseunicorns/uds-common | v1.16.3 | v1.20.3 | | go | github.com/defenseunicorns/uds-cli | v0.27.8 | v0.27.13 | | go | github.com/google/go-github/v69 | v69.2.0 | v74.0.0 | | go | github.com/mikefarah/yq/v4 | v4.45.4 | v4.47.2 | | go | github.com/olekukonko/tablewriter | v0.0.5 | v1.0.9 | | go | github.com/spf13/cobra | v1.9.1 | v1.10.1 | | go | github.com/stretchr/testify | v1.10.0 | v1.11.1 | | go | github.com/zarf-dev/zarf | v0.57.0 | v0.61.2 | | github-tags | github/codeql-action | v3.29.2 | v3.30.3 | | go | gitlab.com/gitlab-org/api/client-go | v0.134.0 | v0.146.0 | | github-tags | goreleaser/goreleaser-action | v6.3.0 | v6.4.0 | | helm | mattermost-enterprise-edition | 2.6.77 | 2.6.81 | | docker | mattermost/mattermost-enterprise-edition | 10.10.0 | 10.12.0 | | docker | registry1.dso.mil/ironbank/opensource/mattermost/mattermost | 10.9.1 | 10.12.0 | * fix(deps): post-renovate fixes + attempt to fix go mod tidy in renovate --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michał Szynkiewicz <michal.l.szynkiewicz@gmail.com>
1 parent 258595f commit 62f3acd

File tree

20 files changed

+145
-102
lines changed

20 files changed

+145
-102
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@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
10+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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.8
12+
default: 0.27.13
1313

1414
runs:
1515
using: composite

.github/workflows/go-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: lint
3030
runs-on: ${{ matrix.os }}
3131
steps:
32-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3333
- name: Setup golang
3434
uses: ./.github/actions/golang
3535
- name: golangci-lint
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
name: Run govulncheck
4242
steps:
43-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
43+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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.8
32+
version: v0.27.13
3333

3434
- name: Install lint deps
3535
run: |

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
contents: write
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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@cee1b8e05ae5b2593a75e197229729eabaa9f8ec # v0.20.2
29+
uses: anchore/sbom-action/download-syft@f8bdd1d8ac5e901a77a92f111440fdb1b593736b # v0.20.6
3030

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

.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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
54+
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
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@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
63+
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030
with:
3131
fetch-depth: 0
3232

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,26 +173,26 @@ Existing vulnerabilities: <count>
173173
<details>
174174
<summary>New vulnerabilities</summary>
175175
176-
| ID | Severity | URL |
177-
|----|----------|-----|
176+
| ID | Severity | URL |
177+
|:----|:----------|:-----|
178178
| ... | ... | ... |
179179
180180
</details>
181181
182182
<details>
183183
<summary>Fixed vulnerabilities</summary>
184184
185-
| ID | Severity | URL |
186-
|----|----------|-----|
185+
| ID | Severity | URL |
186+
|:----|:----------|:-----|
187187
| ... | ... | ... |
188188
189189
</details>
190190
191191
<details>
192192
<summary>Existing vulnerabilities</summary>
193193
194-
| ID | Severity | URL |
195-
|----|----------|-----|
194+
| ID | Severity | URL |
195+
|:----|:----------|:-----|
196196
| ... | ... | ... |
197197
198198
</details>

go.mod

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
module github.com/defenseunicorns/uds-pk
22

3-
go 1.24.2
3+
go 1.24.6
44

55
require (
66
github.com/CycloneDX/cyclonedx-go v0.9.2
7-
github.com/defenseunicorns/uds-cli v0.27.8
7+
github.com/defenseunicorns/uds-cli v0.27.13
88
github.com/go-git/go-git/v5 v5.16.2
99
github.com/goccy/go-yaml v1.18.0
1010
github.com/google/go-github/v69 v69.2.0
11-
github.com/mikefarah/yq/v4 v4.45.4
12-
github.com/olekukonko/tablewriter v0.0.5
13-
github.com/spf13/cobra v1.9.1
14-
github.com/stretchr/testify v1.10.0
15-
github.com/zarf-dev/zarf v0.57.0
11+
github.com/mikefarah/yq/v4 v4.47.2
12+
github.com/olekukonko/tablewriter v1.0.9
13+
github.com/spf13/cobra v1.10.1
14+
github.com/stretchr/testify v1.11.1
15+
github.com/zarf-dev/zarf v0.61.2
1616
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
1717
)
1818

1919
require (
20+
github.com/go-ini/ini v1.67.0 // indirect
2021
github.com/mikelolasagasti/xz v1.0.1 // indirect
2122
github.com/minio/minlz v1.0.0 // indirect
23+
github.com/olekukonko/errors v1.1.0 // indirect
24+
github.com/olekukonko/ll v0.0.9 // indirect
25+
go.yaml.in/yaml/v3 v3.0.4 // indirect
26+
golang.org/x/exp v0.0.0-20250808145144-a408d31f581a // indirect
2227
)
2328

2429
require (
@@ -70,17 +75,17 @@ require (
7075
github.com/sergi/go-diff v1.4.0 // indirect
7176
github.com/skeema/knownhosts v1.3.1 // indirect
7277
github.com/sorairolake/lzip-go v0.3.5 // indirect
73-
github.com/spf13/pflag v1.0.6 // indirect
74-
github.com/ulikunitz/xz v0.5.12 // indirect
78+
github.com/spf13/pflag v1.0.10 // indirect
79+
github.com/ulikunitz/xz v0.5.14 // indirect
7580
github.com/xanzy/ssh-agent v0.3.3 // indirect
7681
github.com/yuin/gopher-lua v1.1.1 // indirect
77-
gitlab.com/gitlab-org/api/client-go v0.134.0
82+
gitlab.com/gitlab-org/api/client-go v0.146.0
7883
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
79-
golang.org/x/crypto v0.39.0 // indirect
80-
golang.org/x/net v0.41.0 // indirect
84+
golang.org/x/crypto v0.41.0 // indirect
85+
golang.org/x/net v0.43.0 // indirect
8186
golang.org/x/oauth2 v0.30.0 // indirect
82-
golang.org/x/sys v0.33.0 // indirect
83-
golang.org/x/text v0.26.0 // indirect
87+
golang.org/x/sys v0.35.0 // indirect
88+
golang.org/x/text v0.28.0 // indirect
8489
golang.org/x/time v0.12.0 // indirect
8590
gopkg.in/warnings.v0 v0.1.2 // indirect
8691
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)