Skip to content

Commit

Permalink
fix linters
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdotb committed Mar 12, 2024
1 parent 95caaca commit f4e86dd
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 7 deletions.
56 changes: 52 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,57 @@

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: 'github-actions'
target-branch: 'develop'
directory: '/'
schedule:
interval: 'weekly'
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-patch

# Maintain dependencies for NPM
- package-ecosystem: 'npm'
target-branch: 'develop'
directory: '/'
schedule:
interval: 'weekly'
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-patch

# Maintain dependencies for Docker
- package-ecosystem: 'docker'
target-branch: 'develop'
directory: '/'
schedule:
interval: 'weekly'

# Maintain dependencies for Golang
- package-ecosystem: 'gomod'
target-branch: 'develop'
directory: '/'
schedule:
interval: 'weekly'

# Maintain dependencies for Terraform
- package-ecosystem: 'terraform'
directory: '/'
schedule:
interval: 'weekly'

# Maintain dependencies for Python
- package-ecosystem: 'pip'
directory: '/'
schedule:
interval: 'weekly'

# Maintain dependencies for Kotlin
- package-ecosystem: 'gradle'
target-branch: 'develop'
directory: '/'
schedule:
interval: "weekly"
interval: 'weekly'
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run Markdown link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to fetch version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: amannn/action-semantic-pull-request@v5.2.0
env:
Expand Down

0 comments on commit f4e86dd

Please sign in to comment.