Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumping Pipelines CLI to
v0.25.0
.This pulls in notable changes like:
Increased consolidation of job types:
Pipelines will now try to maximize the amount of consolidation that is done to minimize the number of jobs that are kicked off in response to files being added or changed.
e.g. When editing one
terragrunt.hcl
file and adding anotherterragrunt.hcl
file, Pipelines used to create oneModuleChanged
job and oneModuleAdded
job. Each of these jobs would do something akin toterragrunt plan
within the directory where the correspondingterragrunt.hcl
file was located. Pipelines will now instead run something akin toterragrunt run-all plan --terragrunt-include-dir dir1 --terragrunt-include-dir dir2
from the root of the repository, leveraging terragrunt-include-dir.This will divide the cost of GitHub Actions minutes by the number of jobs consolidated (divided by two in this example), and improve the accuracy of applies, as Terragrunt will ensure that updates will occur in the order determined by the Directed Acyclic Graph (the DAG).
Increasing the default IAM role assumption duration to
900
seconds.