From 6a57d9601f7cfcfbcc59c082a8aa6b4c102115e7 Mon Sep 17 00:00:00 2001 From: Krzysztof Szyper Date: Tue, 29 Jun 2021 23:51:10 +0200 Subject: [PATCH] Repo sync for versions in action, docs, etc. --- .github/dependabot.yml | 24 +++++++++++++++++++----- LICENSE | 4 ++-- README.md | 8 ++++---- action.yml | 2 +- 4 files changed, 26 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d465041..618a74a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,17 +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 + 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/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 a334694..14ee8a6 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Main action is using [wata727](https://github.com/wata727)'s [TFLint](https://gi ```yaml - name: Run the Action - uses: devops-infra/action-tflint@master + uses: devops-infra/action-tflint@v0.3 with: dir_filter: modules ``` @@ -63,7 +63,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Check linting of Terraform files - uses: devops-infra/action-tflint@master + uses: devops-infra/action-tflint@v0.3 ``` Use different location for TFLint config file and parse only `aws*` and `gcp*` modules in `modules/` directory. Run the Action via GitHub. @@ -80,7 +80,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Check linting of Terraform modules - uses: devops-infra/action-tflint@master + uses: devops-infra/action-tflint@v0.3 with: tflint_config: modules/.tflint.hcl dir_filter: modules/aws,modules/gcp @@ -100,7 +100,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Check linting of Terraform modules - uses: devops-infra/action-tflint@master + uses: devops-infra/action-tflint@v0.3 with: tflint_params: "--module --deep" dir_filter: modules diff --git a/action.yml b/action.yml index 2734504..ce07b45 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ inputs: default: "true" runs: using: docker - image: docker://devopsinfra/action-tflint:latest + image: docker://devopsinfra/action-tflint:v0.3 branding: color: purple icon: upload-cloud