Skip to content

Commit

Permalink
feat: fixed dependabot open PR (#62)
Browse files Browse the repository at this point in the history
* feat: fixed dependabot open PR

* feat: updated shared workflow latest tag

* feat: updated shared workflow latest tag

* feat: updated terraform version

---------

Co-authored-by: anmolnagpal <anmol@clouddrove.com>
  • Loading branch information
theprashantyadav and anmolnagpal committed Feb 23, 2024
1 parent fb80df2 commit 20e9f03
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto_assignee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
jobs:
assignee:
uses: clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.2.1
secrets:
GITHUB: ${{ secrets.GITHUB }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
pull_request:
jobs:
auto-merge:
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.2.1
secrets:
GITHUB: ${{ secrets.GITHUB }}
with:
tfcheck: '_example / Check code format'
tfcheck: 'tf-checks-anomaly-example / Check code format'
...
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
jobs:
changelog:
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.2.1
secrets: inherit
with:
branch: 'master'
6 changes: 3 additions & 3 deletions .github/workflows/tf-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ on:
workflow_dispatch:
jobs:
tf-checks-anomaly-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
with:
working_directory: './_example/anomaly_example/'
tf-checks-basic-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
with:
working_directory: './_example/basic_example/'
tf-checks-expression-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
with:
working_directory: './_example/expression_example/'
2 changes: 1 addition & 1 deletion .github/workflows/tflint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ on:
workflow_dispatch:
jobs:
tf-lint:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.2.1
secrets:
GITHUB: ${{ secrets.GITHUB }}
2 changes: 1 addition & 1 deletion .github/workflows/tfsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
jobs:
tfsec:
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.2.1
secrets: inherit
with:
working_directory: '.'
2 changes: 1 addition & 1 deletion _example/anomaly_example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "public_subnets" {
##-----------------------------------------------------
module "ec2" {
source = "clouddrove/ec2/aws"
version = "2.0.1"
version = "2.0.3"

name = "alarm"
environment = "test"
Expand Down
2 changes: 1 addition & 1 deletion _example/anomaly_example/versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Terraform version
terraform {
required_version = ">= 1.6.5"
required_version = ">= 1.6.6"

required_providers {
aws = {
Expand Down
2 changes: 1 addition & 1 deletion _example/basic_example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "public_subnets" {
##-----------------------------------------------------
module "ec2" {
source = "clouddrove/ec2/aws"
version = "2.0.1"
version = "2.0.3"
name = "ec2-instance"
environment = "test"
label_order = ["name", "environment"]
Expand Down
2 changes: 1 addition & 1 deletion _example/basic_example/versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Terraform version
terraform {
required_version = ">= 1.6.5"
required_version = ">= 1.6.6"

required_providers {
aws = {
Expand Down
2 changes: 1 addition & 1 deletion _example/expression_example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "public_subnets" {
##-----------------------------------------------------
module "ec2" {
source = "clouddrove/ec2/aws"
version = "2.0.1"
version = "2.0.3"

name = "ec2-instance"
environment = "test"
Expand Down
2 changes: 1 addition & 1 deletion _example/expression_example/versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Terraform version
terraform {
required_version = ">= 1.6.5"
required_version = ">= 1.6.6"

required_providers {
aws = {
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Terraform version
terraform {
required_version = ">= 1.6.5"
required_version = ">= 1.6.6"

required_providers {
aws = {
Expand Down

0 comments on commit 20e9f03

Please sign in to comment.