Skip to content

Commit b62c72d

Browse files
Merge pull request #50 from devops-infra/dependency/version
Updated versions in docs, action. Updated dependabot.
2 parents a388a7a + 9f7b692 commit b62c72d

File tree

4 files changed

+25
-11
lines changed

4 files changed

+25
-11
lines changed

.github/dependabot.yml

+19-5
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Krzysztof Szyper / ChristophShyper (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
@@ -37,7 +37,7 @@ Features:
3737

3838
```yaml
3939
- name: Run the Action
40-
uses: devops-infra/action-pull-request@master
40+
uses: devops-infra/action-pull-request@v0.4
4141
with:
4242
github_token: ${{ secrets.GITHUB_TOKEN }}
4343
source_branch: development
@@ -116,7 +116,7 @@ jobs:
116116
- name: Checkout repository
117117
uses: actions/checkout@v2
118118
- name: Create pull request
119-
uses: devops-infra/action-pull-request@master
119+
uses: devops-infra/action-pull-request@v0.4
120120
with:
121121
github_token: ${{ secrets.GITHUB_TOKEN }}
122122
title: Automatic pull request
@@ -138,7 +138,7 @@ jobs:
138138
fetch-depth: 0
139139
- name: Run the Action
140140
if: startsWith(github.ref, 'refs/heads/feature')
141-
uses: devops-infra/action-pull-request@master
141+
uses: devops-infra/action-pull-request@v0.4
142142
with:
143143
github_token: ${{ secrets.GITHUB_TOKEN }}
144144
title: ${{ github.event.commits[0].message }}

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ outputs:
6565
description: Pull request URL.
6666
runs:
6767
using: docker
68-
image: docker://devopsinfra/action-pull-request:latest
68+
image: docker://devopsinfra/action-pull-request:v0.4
6969
env:
7070
GITHUB_TOKEN: ${{ inputs.github_token }}
7171
branding:

0 commit comments

Comments
 (0)