Skip to content

Commit 08d96dc

Browse files
Pipelines CLI v0.31.0 (#93)
- Add detection of included HCL changes - Fix bootstrap does not correctly check for missing configuration keys - Enable caching for terragrunt credentials
1 parent a818fde commit 08d96dc

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/pipelines-drift-detection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ on:
3636
PR_CREATE_TOKEN:
3737
required: false
3838
env:
39-
PIPELINES_CLI_VERSION: v0.29.1
40-
PIPELINES_ACTIONS_VERSION: v3.0.3
39+
PIPELINES_CLI_VERSION: v0.31.0
40+
PIPELINES_ACTIONS_VERSION: v3.1.1
4141
BOILERPLATE_VERSION: v0.5.16
4242
GRUNTWORK_INSTALLER_VERSION: v0.0.40
4343

.github/workflows/pipelines-root.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ on:
3434
required: false
3535

3636
env:
37-
PIPELINES_CLI_VERSION: v0.29.1
38-
PIPELINES_ACTIONS_VERSION: v3.0.3
37+
PIPELINES_CLI_VERSION: v0.31.0
38+
PIPELINES_ACTIONS_VERSION: v3.1.1
3939
BOILERPLATE_VERSION: v0.5.16
4040
GRUNTWORK_INSTALLER_VERSION: v0.0.40
4141

@@ -283,7 +283,7 @@ jobs:
283283
if: ${{ steps.gruntwork_context.outputs.action == 'TERRAGRUNT_EXECUTE' }}
284284
uses: ./pipelines-actions/.github/actions/pipelines-execute
285285
env:
286-
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd ."
286+
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd . --disk-cache-duration-minutes 10"
287287
with:
288288
PIPELINES_GRUNTWORK_READ_TOKEN: ${{ steps.pipelines-gruntwork-read-token.outputs.PIPELINES_TOKEN }}
289289
PIPELINES_CUSTOMER_ORG_READ_TOKEN: ${{ steps.pipelines-customer-org-read-token.outputs.PIPELINES_TOKEN }}

.github/workflows/pipelines-unlock.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ on:
4141
PIPELINES_READ_TOKEN:
4242
required: true
4343
env:
44-
PIPELINES_CLI_VERSION: v0.29.1
45-
PIPELINES_ACTIONS_VERSION: v3.0.3
44+
PIPELINES_CLI_VERSION: v0.31.0
45+
PIPELINES_ACTIONS_VERSION: v3.1.1
4646

4747
jobs:
4848
unlock_one:
@@ -95,7 +95,7 @@ jobs:
9595
id: terragrunt
9696
uses: ./pipelines-actions/.github/actions/pipelines-execute
9797
env:
98-
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd ."
98+
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd . --disk-cache-duration-minutes 10"
9999
with:
100100
PIPELINES_GRUNTWORK_READ_TOKEN: ${{ steps.pipelines-gruntwork-read-token.outputs.PIPELINES_TOKEN }}
101101
PIPELINES_CUSTOMER_ORG_READ_TOKEN: ${{ steps.pipelines-customer-org-read-token.outputs.PIPELINES_TOKEN }}
@@ -215,7 +215,7 @@ jobs:
215215
216216
REGION=$(echo $pipelinesConfigAuth | jq -r ".Authentication.AWSOIDC.Region")
217217
218-
auth=$(pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd .)
218+
auth=$(pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd . --disk-cache-duration-minutes 10)
219219
export AWS_DEFAULT_REGION=$REGION
220220
export AWS_ACCESS_KEY_ID=$(jq -r '.awsCredentials.ACCESS_KEY_ID' <<< $auth)
221221
export AWS_SECRET_ACCESS_KEY=$(jq -r '.awsCredentials.SECRET_ACCESS_KEY' <<< $auth)
@@ -307,7 +307,7 @@ jobs:
307307
id: terragrunt
308308
uses: ./pipelines-actions/.github/actions/pipelines-execute
309309
env:
310-
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd ."
310+
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd . --disk-cache-duration-minutes 10"
311311
with:
312312
PIPELINES_GRUNTWORK_READ_TOKEN: ${{ steps.pipelines-gruntwork-read-token.outputs.PIPELINES_TOKEN }}
313313
PIPELINES_CUSTOMER_ORG_READ_TOKEN: ${{ steps.pipelines-customer-org-read-token.outputs.PIPELINES_TOKEN }}

.github/workflows/pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ on:
3232
required: false
3333

3434
env:
35-
PIPELINES_CLI_VERSION: v0.29.1
36-
PIPELINES_ACTIONS_VERSION: v3.0.3
35+
PIPELINES_CLI_VERSION: v0.31.0
36+
PIPELINES_ACTIONS_VERSION: v3.1.1
3737

3838
# GitHub Actions tends to hit resource exhaustion and kill running jobs
3939
# if we leave parallelism unbounded, so we set the max to 10 for a sane default.
@@ -190,7 +190,7 @@ jobs:
190190
id: terragrunt
191191
uses: ./pipelines-actions/.github/actions/pipelines-execute
192192
env:
193-
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd ."
193+
TERRAGRUNT_AUTH_PROVIDER_CMD: "pipelines auth terragrunt-credentials --ci github-actions --cloud aws --wd . --disk-cache-duration-minutes 10"
194194
with:
195195
PIPELINES_GRUNTWORK_READ_TOKEN: ${{ steps.pipelines-gruntwork-read-token.outputs.PIPELINES_TOKEN }}
196196
PIPELINES_CUSTOMER_ORG_READ_TOKEN: ${{ steps.pipelines-customer-org-read-token.outputs.PIPELINES_TOKEN }}

0 commit comments

Comments
 (0)