Skip to content

Commit

Permalink
Repo sync for versions in action, docs, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophShyper committed Jun 29, 2021
1 parent 0757e0d commit 6a57d96
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 12 deletions.
24 changes: 19 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6a57d96

Please sign in to comment.