Skip to content

Commit 576d117

Browse files
authored
Terraform 0.14 upgrade (#32)
* Terraform 0.14 upgrade * Update auto-context.yml
1 parent cfba9b1 commit 576d117

File tree

5 files changed

+6
-13
lines changed

5 files changed

+6
-13
lines changed

.github/workflows/auto-context.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
make init
2828
make github/init/context.tf
2929
make readme/build
30-
echo "::set-output name=create_pull_request=true"
30+
echo "::set-output name=create_pull_request::true"
3131
fi
3232
else
3333
echo "This module has not yet been updated to support the context.tf pattern! Please update in order to support automatic updates."
@@ -38,6 +38,8 @@ jobs:
3838
uses: cloudposse/actions/github/create-pull-request@0.22.0
3939
with:
4040
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
41+
committer: 'cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>'
42+
author: 'cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>'
4143
commit-message: Update context.tf from origin source
4244
title: Update context.tf
4345
body: |-

.github/workflows/validate-codeowners.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,10 @@ jobs:
99
- name: "Checkout source code at current commit"
1010
uses: actions/checkout@v2
1111
- uses: mszostok/codeowners-validator@v0.5.0
12-
if: github.event.pull_request.head.repo.full_name == github.repository
13-
name: "Full check of CODEOWNERS"
1412
with:
1513
# For now, remove "files" check to allow CODEOWNERS to specify non-existent
1614
# files so we can use the same CODEOWNERS file for Terraform and non-Terraform repos
1715
# checks: "files,syntax,owners,duppatterns"
1816
checks: "syntax,owners,duppatterns"
1917
# GitHub access token is required only if the `owners` check is enabled
2018
github_access_token: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}"
21-
- uses: mszostok/codeowners-validator@v0.5.0
22-
if: github.event.pull_request.head.repo.full_name != github.repository
23-
name: "Syntax check of CODEOWNERS"
24-
with:
25-
checks: "syntax,duppatterns"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
249249

250250
## Copyright
251251

252-
Copyright © 2017-2020 [Cloud Posse, LLC](https://cpco.io/copyright)
252+
Copyright © 2017-2021 [Cloud Posse, LLC](https://cpco.io/copyright)
253253

254254

255255

context.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
# will be null, and `module.this.delimiter` will be `-` (hyphen).
1919
#
2020

21-
2221
module "this" {
2322
source = "cloudposse/label/null"
24-
version = "0.22.0" // requires Terraform >= 0.12.26
23+
version = "0.22.1" // requires Terraform >= 0.12.26
2524

2625
enabled = var.enabled
2726
namespace = var.namespace

examples/complete/context.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
# will be null, and `module.this.delimiter` will be `-` (hyphen).
1919
#
2020

21-
2221
module "this" {
2322
source = "cloudposse/label/null"
24-
version = "0.22.0" // requires Terraform >= 0.12.26
23+
version = "0.22.1" // requires Terraform >= 0.12.26
2524

2625
enabled = var.enabled
2726
namespace = var.namespace

0 commit comments

Comments
 (0)