Skip to content

Commit d51c52b

Browse files
Merge branch 'main' into fix-terragrunt-dir-in-stack
2 parents 98dc6e9 + f576c69 commit d51c52b

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ env: &env
66
environment:
77
GRUNTWORK_INSTALLER_VERSION: v0.0.39
88
MODULE_CI_VERSION: v0.57.0
9-
OPENTOFU_VERSION: "1.9.0"
109
TERRAFORM_VERSION: "1.11.3"
1110
TFLINT_VERSION: "0.47.0"
1211

docs-starlight/src/content/docs/04-reference/05-supported-versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The officially supported versions are:
1212

1313
| OpenTofu Version | Terragrunt Version |
1414
|------------------|------------------------------------------------------------------------------|
15+
| 1.10.x | >= [0.82.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.0) |
1516
| 1.9.x | >= [0.72.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.72.0) |
1617
| 1.8.x | >= [0.66.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.66.0) |
1718
| 1.7.x | >= [0.58.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.58.0) |

docs/_docs/04_reference/07-supported-versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The officially supported versions are:
1717

1818
| OpenTofu Version | Terragrunt Version |
1919
|------------------|------------------------------------------------------------------------------|
20+
| 1.10.x | >= [0.82.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.0) |
2021
| 1.9.x | >= [0.72.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.72.0) |
2122
| 1.8.x | >= [0.66.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.66.0) |
2223
| 1.7.x | >= [0.58.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.58.0) |

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tools]
22
go = "1.24.4"
3-
opentofu = "1.9.0"
3+
opentofu = "1.10.0"
44
golangci-lint = "2.1.6"
55
"go:github.com/goph/licensei/cmd/licensei" = "v0.9.0"
66
"go:go.uber.org/mock/mockgen" = "v0.5.2"

test/integration_serial_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,10 @@ func TestTerragruntProviderCache(t *testing.T) {
691691
require.NoError(t, err)
692692

693693
for _, entry := range entries {
694+
// skip .lock files since it is used to lock file action
695+
if strings.HasSuffix(entry.Name(), ".lock") {
696+
continue
697+
}
694698
actualProviderSymlinks++
695699
assert.Equal(t, fs.ModeSymlink, entry.Type())
696700

0 commit comments

Comments
 (0)