Skip to content

Commit 6d39058

Browse files
Merge pull request #17 from devops-infra/dependency/repo-sync
Updated dependabot and versions in action and README.md
2 parents 49851f2 + cbe2bc7 commit 6d39058

File tree

5 files changed

+22
-13
lines changed

5 files changed

+22
-13
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +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
88
assignees:
9-
- "ChristophShyper"
9+
- ChristophShyper
1010
labels:
1111
- automatic
1212

1313
# Enable version updates for Docker
14-
- package-ecosystem: "docker"
14+
- package-ecosystem: docker
1515
directory: "/"
1616
schedule:
17-
interval: "daily"
17+
interval: daily
1818
assignees:
19-
- "ChristophShyper"
19+
- ChristophShyper
2020
labels:
2121
- 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

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44

55
# Custom
66
.tmp/
7-

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Features:
3333

3434
```yaml
3535
- name: Validate Terraform modules
36-
uses: devops-infra/action-terraform-validate@master
36+
uses: devops-infra/action-terraform-validate@v0.3
3737
with:
3838
dir_filter: modules
3939
```
@@ -56,7 +56,7 @@ jobs:
5656
- name: Checkout repository
5757
uses: actions/checkout@v2
5858
- name: Validate Terraform configuration
59-
uses: devops-infra/action-terraform-validate@master
59+
uses: devops-infra/action-terraform-validate@v0.3
6060
```
6161

6262
Validate Terraform modules only in `modules/aws` and `modules/gcp` directories. Run the Action via DockerHub.
@@ -71,7 +71,7 @@ jobs:
7171
- name: Checkout repository
7272
uses: actions/checkout@v2
7373
- name: Validate Terraform modules
74-
uses: devops-infra/action-terrraform-validate@master
74+
uses: devops-infra/action-terrraform-validate@v0.3
7575
with:
7676
dir_filter: modules/aws,modules/gcp
7777
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
default: "*"
99
runs:
1010
using: docker
11-
image: docker://devopsinfra/action-terraform-validate:latest
11+
image: docker://devopsinfra/action-terraform-validate:v0.3
1212
branding:
1313
color: purple
1414
icon: upload-cloud

0 commit comments

Comments
 (0)