File tree Expand file tree Collapse file tree 3 files changed +56
-8
lines changed Expand file tree Collapse file tree 3 files changed +56
-8
lines changed Original file line number Diff line number Diff line change 4
4
5
5
version : 2
6
6
updates :
7
-
8
7
# Maintain dependencies for GitHub Actions
9
- - package-ecosystem : " github-actions"
10
- directory : " /"
8
+ - package-ecosystem : ' github-actions'
9
+ target-branch : ' develop'
10
+ directory : ' /'
11
+ schedule :
12
+ interval : ' weekly'
13
+ ignore :
14
+ - dependency-name : " *"
15
+ update-types :
16
+ - version-update:semver-patch
17
+
18
+ # Maintain dependencies for NPM
19
+ - package-ecosystem : ' npm'
20
+ target-branch : ' develop'
21
+ directory : ' /'
22
+ schedule :
23
+ interval : ' weekly'
24
+ ignore :
25
+ - dependency-name : " *"
26
+ update-types :
27
+ - version-update:semver-patch
28
+
29
+ # Maintain dependencies for Docker
30
+ - package-ecosystem : ' docker'
31
+ target-branch : ' develop'
32
+ directory : ' /'
33
+ schedule :
34
+ interval : ' weekly'
35
+
36
+ # Maintain dependencies for Golang
37
+ - package-ecosystem : ' gomod'
38
+ target-branch : ' develop'
39
+ directory : ' /'
40
+ schedule :
41
+ interval : ' weekly'
42
+
43
+ # Maintain dependencies for Terraform
44
+ - package-ecosystem : ' terraform'
45
+ directory : ' /'
46
+ schedule :
47
+ interval : ' weekly'
48
+
49
+ # Maintain dependencies for Python
50
+ - package-ecosystem : ' pip'
51
+ directory : ' /'
52
+ schedule :
53
+ interval : ' weekly'
54
+
55
+ # Maintain dependencies for Kotlin
56
+ - package-ecosystem : ' gradle'
57
+ target-branch : ' develop'
58
+ directory : ' /'
11
59
schedule :
12
- interval : " weekly"
60
+ interval : ' weekly'
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
17
17
- name : Run Markdown link check
18
18
uses : gaurav-nelson/github-action-markdown-link-check@v1
@@ -25,12 +25,12 @@ jobs:
25
25
runs-on : ubuntu-latest
26
26
27
27
steps :
28
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
29
29
with :
30
30
fetch-depth : 0 # Required to fetch version
31
31
32
32
- name : Run Super Linter
33
- uses : github/super-linter/slim@v4
33
+ uses : github/super-linter/slim@v5
34
34
env :
35
35
IGNORE_GITIGNORED_FILES : true
36
36
DEFAULT_BRANCH : main
Original file line number Diff line number Diff line change 20
20
runs-on : ubuntu-latest
21
21
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
25
25
26
26
env :
You can’t perform that action at this time.
0 commit comments