Skip to content

Commit 050a2a6

Browse files
fix(tf): remove unnecessary flag --all from terragrunt command
1 parent 269cebe commit 050a2a6

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

envsubst/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Simple wrapper action for running [envsubst] over a file or set of files.
55
## Usage
66

77
```yaml
8-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
8+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
99
with:
1010
# One or more files to apply substitutions on (separated by space).
1111
input: ''
@@ -35,7 +35,7 @@ Simple wrapper action for running [envsubst] over a file or set of files.
3535
### Apply substitutions on a single file
3636
3737
```yaml
38-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
38+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
3939
with:
4040
input: template.yml
4141
output: deployment.yml
@@ -44,7 +44,7 @@ Simple wrapper action for running [envsubst] over a file or set of files.
4444
### Apply substitutions on multiple files
4545
4646
```yaml
47-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
47+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
4848
with:
4949
input: template.yml package.txt config.toml
5050
output: result.yml output.txt result.toml
@@ -53,7 +53,7 @@ Simple wrapper action for running [envsubst] over a file or set of files.
5353
### Apply substitutions in-place
5454
5555
```yaml
56-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
56+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
5757
with:
5858
input: deployment.yml
5959
in_place: true
@@ -62,7 +62,7 @@ Simple wrapper action for running [envsubst] over a file or set of files.
6262
### Apply substitutions with custom environment variables
6363
6464
```yaml
65-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
65+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
6666
with:
6767
input: template.yml
6868
output: result.yml
@@ -74,15 +74,15 @@ Simple wrapper action for running [envsubst] over a file or set of files.
7474
### Apply substitutions and print result to stdout
7575
7676
```yaml
77-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
77+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
7878
with:
7979
input: template.yml
8080
```
8181
8282
### Apply substitutions restricting to specific environment variables
8383
8484
```yaml
85-
- uses: hpedrorodrigues/actions/envsubst@v1.0.6
85+
- uses: hpedrorodrigues/actions/envsubst@v1.0.7
8686
with:
8787
input: template.yml
8888
format: '${CUSTOM_VAR} ${GITHUB_SHA}'

kustomize/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ An action to validate kustomization files and outputs using [Kustomize].
55
## Usage
66

77
```yaml
8-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
8+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
99
with:
1010
# Strategy to use for detecting kustomization directories.
1111
# Possible values
@@ -40,9 +40,9 @@ An action to validate kustomization files and outputs using [Kustomize].
4040
### Validate all kustomization directories
4141
4242
```yaml
43-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
43+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
4444
# or
45-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
45+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
4646
with:
4747
auto_discovery: all
4848
```
@@ -53,15 +53,15 @@ An action to validate kustomization files and outputs using [Kustomize].
5353
- uses: actions/checkout@v4
5454
with:
5555
fetch-depth: 0 # This is required to allow this action to detect modified files.
56-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
56+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
5757
with:
5858
auto_discovery: modified
5959
```
6060
6161
### Validate specific kustomization directories
6262
6363
```yaml
64-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
64+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
6565
with:
6666
auto_discovery: static
6767
path: kustomize/base kustomize/overlays/production
@@ -70,7 +70,7 @@ An action to validate kustomization files and outputs using [Kustomize].
7070
### Validate kustomization directories with custom log level
7171
7272
```yaml
73-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
73+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
7474
with:
7575
auto_discovery: all
7676
log_level: verbose
@@ -79,7 +79,7 @@ An action to validate kustomization files and outputs using [Kustomize].
7979
### Validate kustomization directories with custom flags
8080
8181
```yaml
82-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
82+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
8383
with:
8484
auto_discovery: all
8585
flags: --load-restrictor=LoadRestrictionsNone --enable-alpha-plugins
@@ -92,7 +92,7 @@ An action to validate kustomization files and outputs using [Kustomize].
9292
- uses: alexellis/arkade-get@master
9393
with:
9494
kustomize: latest
95-
- uses: hpedrorodrigues/actions/kustomize@v1.0.6
95+
- uses: hpedrorodrigues/actions/kustomize@v1.0.7
9696
with:
9797
auto_discovery: all
9898
```

setup-sphynx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ An action that sets up [Sphynx CLI].
66

77
```yaml
88
- name: Set up Sphynx
9-
uses: hpedrorodrigues/actions/setup-sphynx@v1.0.6
9+
uses: hpedrorodrigues/actions/setup-sphynx@v1.0.7
1010
```
1111
1212
[Sphynx CLI]: https://github.com/hpedrorodrigues/sphynx

tf-check/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Checks files recursively against a canonical format using [Terraform][terraform]
66

77
```yaml
88
- name: Lint
9-
uses: hpedrorodrigues/actions/tf-check@v1.0.6
9+
uses: hpedrorodrigues/actions/tf-check@v1.0.7
1010
```
1111
1212
[terraform]: https://www.terraform.io

tf-check/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ echo 'Checking OpenTofu files...'
1919
tofu fmt -check -recursive
2020

2121
echo 'Checking Terragrunt files...'
22-
terragrunt hcl fmt --check --all
22+
terragrunt hcl fmt --check

tools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ List of pre-installed tools is [here](https://github.com/hpedrorodrigues/images/
88

99
```yaml
1010
- name: Compress an example file
11-
uses: hpedrorodrigues/actions/tools@v1.0.6
11+
uses: hpedrorodrigues/actions/tools@v1.0.7
1212
with:
1313
run: |
1414
FILE_NAME='example-file'

0 commit comments

Comments
 (0)