Skip to content

Commit 3f91c56

Browse files
Merge pull request #16 from devops-infra/dependency/updates
Updated versions in action and docs.
2 parents f4b1def + 1dd6170 commit 3f91c56

File tree

4 files changed

+24
-20
lines changed

4 files changed

+24
-20
lines changed

.github/dependabot.yml

+18-14
Original file line numberDiff line numberDiff line change
@@ -1,27 +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"
8-
9-
# Enable version updates for Docker
10-
- package-ecosystem: "docker"
11-
directory: "/"
12-
schedule:
13-
interval: "daily"
7+
interval: daily
148
assignees:
15-
- "ChristophShyper"
9+
- ChristophShyper
1610
labels:
1711
- automatic
1812

19-
# Enable version updates for pip
20-
- package-ecosystem: "pip"
13+
# Enable version updates for Docker
14+
- package-ecosystem: docker
2115
directory: "/"
2216
schedule:
23-
interval: "daily"
17+
interval: daily
2418
assignees:
25-
- "ChristophShyper"
19+
- ChristophShyper
2620
labels:
27-
- automatic
21+
- 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

+2-2
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Features:
3333
## Reference
3434
```yaml
3535
- name: Fail on different veriables' definitions
36-
uses: devops-infra/action-terraform-copy-vars@master
36+
uses: devops-infra/action-terraform-copy-vars@v0.2
3737
with:
3838
fail_on_changes: true
3939
```
@@ -60,7 +60,7 @@ jobs:
6060
- name: Checkout repoistory
6161
uses: actions/checkout@v2
6262
- name: Fail on different veriables' definitions
63-
uses: devops-infra/action-terraform-copy-vars@master
63+
uses: devops-infra/action-terraform-copy-vars@v0.2
6464
with:
6565
fail_on_changes: true
6666
```
@@ -77,7 +77,7 @@ jobs:
7777
- name: Checkout repoistory
7878
uses: actions/checkout@v2
7979
- name: Update Terraform variables
80-
uses: devops-infra/action-terraform-copy-vars@master
80+
uses: devops-infra/action-terraform-copy-vars@v0.2
8181
with:
8282
dirs_with_modules: modules
8383
files_with_vars: variables.tf

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ outputs:
2323
description: List of updated files
2424
runs:
2525
using: docker
26-
image: docker://devopsinfra/action-terraform-copy-vars:latest
26+
image: docker://devopsinfra/action-terraform-copy-vars:v0.2
2727
branding:
2828
color: purple
2929
icon: upload-cloud

0 commit comments

Comments
 (0)