Skip to content

Commit 6a57d96

Browse files
Repo sync for versions in action, docs, etc.
1 parent 0757e0d commit 6a57d96

4 files changed

Lines changed: 26 additions & 12 deletions

File tree

.github/dependabot.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,31 @@
11
version: 2
22
updates:
33
# Maintain dependencies for GitHub Actions
4-
- package-ecosystem: "github-actions"
4+
- package-ecosystem: github-actions
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: daily
8+
assignees:
9+
- ChristophShyper
10+
labels:
11+
- automatic
812

913
# Enable version updates for Docker
10-
- package-ecosystem: "docker"
14+
- package-ecosystem: docker
1115
directory: "/"
1216
schedule:
13-
interval: "daily"
17+
interval: daily
1418
assignees:
15-
- "ChristophShyper"
19+
- ChristophShyper
1620
labels:
1721
- automatic
22+
23+
# # Enable version updates for pip
24+
# - package-ecosystem: pip
25+
# directory: "/"
26+
# schedule:
27+
# interval: daily
28+
# assignees:
29+
# - ChristophShyper
30+
# labels:
31+
# - automatic

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Krzysztof Szyper (https://christophshyper.github.io/)
3+
Copyright (c) 2021 Krzysztof Szyper aka ChristophShyper (https://shyper.pro/)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -14,7 +14,7 @@ copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Main action is using [wata727](https://github.com/wata727)'s [TFLint](https://gi
3434

3535
```yaml
3636
- name: Run the Action
37-
uses: devops-infra/action-tflint@master
37+
uses: devops-infra/action-tflint@v0.3
3838
with:
3939
dir_filter: modules
4040
```
@@ -63,7 +63,7 @@ jobs:
6363
- name: Checkout
6464
uses: actions/checkout@v2
6565
- name: Check linting of Terraform files
66-
uses: devops-infra/action-tflint@master
66+
uses: devops-infra/action-tflint@v0.3
6767
```
6868

6969
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:
8080
- name: Checkout
8181
uses: actions/checkout@v2
8282
- name: Check linting of Terraform modules
83-
uses: devops-infra/action-tflint@master
83+
uses: devops-infra/action-tflint@v0.3
8484
with:
8585
tflint_config: modules/.tflint.hcl
8686
dir_filter: modules/aws,modules/gcp
@@ -100,7 +100,7 @@ jobs:
100100
- name: Checkout
101101
uses: actions/checkout@v2
102102
- name: Check linting of Terraform modules
103-
uses: devops-infra/action-tflint@master
103+
uses: devops-infra/action-tflint@v0.3
104104
with:
105105
tflint_params: "--module --deep"
106106
dir_filter: modules

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
default: "true"
2525
runs:
2626
using: docker
27-
image: docker://devopsinfra/action-tflint:latest
27+
image: docker://devopsinfra/action-tflint:v0.3
2828
branding:
2929
color: purple
3030
icon: upload-cloud

0 commit comments

Comments
 (0)