Skip to content

Commit f203618

Browse files
chore: Bump github/super-linter from 4 to 5 (#10)
* Bump github/super-linter from 4 to 5 Bumps [github/super-linter](https://github.com/github/super-linter) from 4 to 5. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md) - [Commits](github/super-linter@v4...v5) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix linters --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ankur Banerjee <[email protected]>
1 parent d3282c3 commit f203618

File tree

3 files changed

+56
-8
lines changed

3 files changed

+56
-8
lines changed

.github/dependabot.yml

Lines changed: 52 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,57 @@
44

55
version: 2
66
updates:
7-
87
# 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: '/'
1159
schedule:
12-
interval: "weekly"
60+
interval: 'weekly'

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Run Markdown link check
1818
uses: gaurav-nelson/github-action-markdown-link-check@v1
@@ -25,12 +25,12 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0 # Required to fetch version
3131

3232
- name: Run Super Linter
33-
uses: github/super-linter/slim@v4
33+
uses: github/super-linter/slim@v5
3434
env:
3535
IGNORE_GITIGNORED_FILES: true
3636
DEFAULT_BRANCH: main

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
- uses: amannn/[email protected]
2626
env:

0 commit comments

Comments
 (0)