diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cb21bb0..618a74a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,21 +1,31 @@ version: 2 updates: # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" + - package-ecosystem: github-actions directory: "/" schedule: - interval: "daily" + interval: daily assignees: - - "ChristophShyper" + - ChristophShyper labels: - automatic # Enable version updates for Docker - - package-ecosystem: "docker" + - package-ecosystem: docker directory: "/" schedule: - interval: "daily" + interval: daily assignees: - - "ChristophShyper" + - ChristophShyper labels: - automatic + +# # Enable version updates for pip +# - package-ecosystem: pip +# directory: "/" +# schedule: +# interval: daily +# assignees: +# - ChristophShyper +# labels: +# - automatic diff --git a/.gitignore b/.gitignore index 5c2cd97..7330dee 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,3 @@ # Custom .tmp/ - diff --git a/LICENSE b/LICENSE index 77ad479..de34ce5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Krzysztof Szyper (https://christophshyper.github.io/) +Copyright (c) 2021 Krzysztof Szyper aka ChristophShyper (https://shyper.pro/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -14,7 +14,7 @@ copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE diff --git a/README.md b/README.md index 4f152c6..1751814 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Features: ```yaml - name: Validate Terraform modules - uses: devops-infra/action-terraform-validate@master + uses: devops-infra/action-terraform-validate@v0.3 with: dir_filter: modules ``` @@ -56,7 +56,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - name: Validate Terraform configuration - uses: devops-infra/action-terraform-validate@master + uses: devops-infra/action-terraform-validate@v0.3 ``` Validate Terraform modules only in `modules/aws` and `modules/gcp` directories. Run the Action via DockerHub. @@ -71,7 +71,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - name: Validate Terraform modules - uses: devops-infra/action-terrraform-validate@master + uses: devops-infra/action-terrraform-validate@v0.3 with: dir_filter: modules/aws,modules/gcp ``` diff --git a/action.yml b/action.yml index cb61b6c..885aa9b 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: default: "*" runs: using: docker - image: docker://devopsinfra/action-terraform-validate:latest + image: docker://devopsinfra/action-terraform-validate:v0.3 branding: color: purple icon: upload-cloud