Skip to content

Commit a82e243

Browse files
authored
Merge pull request #54 from gruntwork-io/chore/tidying-go-mod
chore: Tidying go.mod & go.sum
2 parents ca20309 + b720efb commit a82e243

File tree

3 files changed

+27
-211
lines changed

3 files changed

+27
-211
lines changed

.github/workflows/license-check.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ jobs:
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424

25+
- name: Cache licensei
26+
uses: actions/cache@v4
27+
with:
28+
path: .licensei.cache
29+
key: ${{ runner.os }}-licensei-${{ hashFiles('**/go.sum', '.licensei.toml') }}
30+
restore-keys: |
31+
${{ runner.os }}-licensei-
32+
2533
- name: Run License Check
2634
id: run-license-check
2735
run: |

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.24.4
55
require (
66
github.com/gruntwork-io/terragrunt v0.82.3
77
github.com/hashicorp/hcl/v2 v2.23.0
8+
github.com/sirupsen/logrus v1.9.3
89
github.com/stretchr/testify v1.10.0
910
github.com/zclconf/go-cty v1.16.3
1011
go.lsp.dev/protocol v0.12.0
@@ -146,7 +147,6 @@ require (
146147
github.com/ryanuber/go-glob v1.0.0 // indirect
147148
github.com/segmentio/asm v1.2.0 // indirect
148149
github.com/segmentio/encoding v0.5.1 // indirect
149-
github.com/sirupsen/logrus v1.9.3 // indirect
150150
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
151151
github.com/ulikunitz/xz v0.5.12 // indirect
152152
github.com/urfave/cli v1.22.17 // indirect

0 commit comments

Comments
 (0)