Skip to content

Commit 9cbe9bc

Browse files
Updated versions in README.md. Updated LICENSE. Updated action and dependabot config.
1 parent 6c2419e commit 9cbe9bc

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
find . -type f -name "*" -print0 | xargs -0 sed -i "s/foo/bar/g"
7878
- name: Commit and push changes
79-
uses: devops-infra/action-commit-push@master
79+
uses: devops-infra/action-commit-push@v0.3
8080
with:
8181
github_token: ${{ secrets.GITHUB_TOKEN }}
8282
commit_message: Replaced foo with bar
@@ -97,7 +97,7 @@ jobs:
9797
run: |
9898
find . -type f -name "*" -print0 | xargs -0 sed -i "s/foo/bar/g"
9999
- name: Commit and push changes
100-
uses: devops-infra/action-commit-push@master
100+
uses: devops-infra/action-commit-push@v0.3
101101
with:
102102
github_token: ${{ secrets.GITHUB_TOKEN }}
103103
commit_prefix: "[AUTO-COMMIT] foo/bar replace"

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ outputs:
2929
description: Name of the branch code was pushed into
3030
runs:
3131
using: docker
32-
image: docker://devopsinfra/action-commit-push:latest
32+
image: docker://devopsinfra/action-commit-push:v0.3
3333
env:
3434
GITHUB_TOKEN: ${{ inputs.github_token }}
3535
branding:

0 commit comments

Comments
 (0)