Skip to content

Commit 5a5d8cb

Browse files
fix(deps): update dependencies
1 parent 7e563ae commit 5a5d8cb

7 files changed

Lines changed: 77 additions & 34 deletions

File tree

.github/workflows/release-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: macos-14
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
13+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1414
- name: Unshallow
1515
run: git fetch --prune --unshallow
1616
- name: Set up Go
17-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
17+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
1818
with:
19-
go-version: 1.24.x
19+
go-version: 1.26.x
2020
- name: Run GoReleaser
21-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6
21+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
2222
if: startsWith(github.ref, 'refs/tags/')
2323
with:
2424
version: latest

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: checkout
10-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
10+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1111
with:
1212
fetch-depth: 0
1313
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1414
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
15-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
15+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
1616
with:
17-
go-version: "1.24.3"
18-
- uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6
17+
go-version: "1.26.0"
18+
- uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
1919
with:
2020
install-only: true
2121
version: latest

.github/workflows/tidy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: checkout
15-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
15+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1616
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
1717
- name: reattach HEAD to Head Ref
1818
# b/c checkout action leaves in detached head state https://github.com/actions/checkout/issues/6
1919
run: git checkout "$(echo ${{ github.head_ref }})"
2020
if: github.head_ref != '' && (github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]')
2121
- name: setup go
22-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
22+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
2323
with:
24-
go-version: "1.24.3"
24+
go-version: "1.26.0"
2525
- name: Tidy
2626
run: |
2727
go version

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repos:
1313
- id: trailing-whitespace
1414

1515
- repo: https://github.com/igorshubovych/markdownlint-cli
16-
rev: v0.44.0
16+
rev: v0.47.0
1717
hooks:
1818
- id: markdownlint
1919

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
golang 1.24.3
1+
golang 1.26.0

go.mod

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
module github.com/trussworks/setup-new-aws-user
22

3-
go 1.23
3+
go 1.24.0
44

55
require (
66
github.com/99designs/aws-vault v1.0.1-0.20200507051055-ae369037cc75
77
github.com/99designs/keyring v1.2.2
8-
github.com/aws/aws-sdk-go v1.55.7
9-
github.com/go-playground/validator/v10 v10.26.0
8+
github.com/aws/aws-sdk-go v1.55.8
9+
github.com/go-playground/validator/v10 v10.30.1
1010
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
1111
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
12-
github.com/spf13/cobra v1.9.1
13-
github.com/spf13/pflag v1.0.6
14-
github.com/spf13/viper v1.20.1
15-
github.com/stretchr/testify v1.10.0
16-
gopkg.in/ini.v1 v1.67.0
12+
github.com/spf13/cobra v1.10.2
13+
github.com/spf13/pflag v1.0.10
14+
github.com/spf13/viper v1.21.0
15+
github.com/stretchr/testify v1.11.1
16+
gopkg.in/ini.v1 v1.67.1
1717
)
1818

1919
require (
2020
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
2121
github.com/danieljoos/wincred v1.1.2 // indirect
2222
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2323
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
24-
github.com/fsnotify/fsnotify v1.8.0 // indirect
25-
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
24+
github.com/fsnotify/fsnotify v1.9.0 // indirect
25+
github.com/gabriel-vasile/mimetype v1.4.12 // indirect
2626
github.com/go-playground/locales v0.14.1 // indirect
2727
github.com/go-playground/universal-translator v0.18.1 // indirect
28-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
28+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
2929
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
3030
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
3131
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -36,23 +36,24 @@ require (
3636
github.com/mitchellh/go-homedir v1.1.0 // indirect
3737
github.com/mitchellh/mapstructure v1.5.0 // indirect
3838
github.com/mtibben/percent v0.2.1 // indirect
39-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
39+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
4040
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
41-
github.com/sagikazarmark/locafero v0.7.0 // indirect
41+
github.com/sagikazarmark/locafero v0.11.0 // indirect
4242
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
43-
github.com/sourcegraph/conc v0.3.0 // indirect
44-
github.com/spf13/afero v1.12.0 // indirect
45-
github.com/spf13/cast v1.7.1 // indirect
43+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
44+
github.com/spf13/afero v1.15.0 // indirect
45+
github.com/spf13/cast v1.10.0 // indirect
4646
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4747
github.com/subosito/gotenv v1.6.0 // indirect
4848
go.uber.org/atomic v1.9.0 // indirect
4949
go.uber.org/multierr v1.9.0 // indirect
50-
golang.org/x/crypto v0.33.0 // indirect
50+
go.yaml.in/yaml/v3 v3.0.4 // indirect
51+
golang.org/x/crypto v0.46.0 // indirect
5152
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
52-
golang.org/x/net v0.34.0 // indirect
53-
golang.org/x/sys v0.30.0 // indirect
54-
golang.org/x/term v0.29.0 // indirect
55-
golang.org/x/text v0.22.0 // indirect
53+
golang.org/x/net v0.47.0 // indirect
54+
golang.org/x/sys v0.39.0 // indirect
55+
golang.org/x/term v0.38.0 // indirect
56+
golang.org/x/text v0.32.0 // indirect
5657
gopkg.in/yaml.v3 v3.0.1 // indirect
5758
)
5859

0 commit comments

Comments
 (0)