Skip to content

Commit

Permalink
chore: fix workflow rules for go.mod and go.sum files, and make depen…
Browse files Browse the repository at this point in the history
…dabot ignore patch versions for go dependencies
  • Loading branch information
le0m committed Aug 26, 2024
1 parent def19c7 commit d75423b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ updates:
- "/lambda"
schedule:
interval: "weekly"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
groups:
aws:
patterns: ['github.com/aws/*']
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
branches: [ main ]
paths:
- '**.go'
- '**.go.mod'
- '**.go.sum'
- '**/go.mod'
- '**/go.sum'

permissions:
contents: write
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
branches: [ main ]
paths:
- '**.go'
- '**.go.mod'
- '**.go.sum'
- '**/go.mod'
- '**/go.sum'
pull_request:
branches: [ main ]
paths:
- '**.go'
- '**.go.mod'
- '**.go.sum'
- '**/go.mod'
- '**/go.sum'

jobs:
lint:
Expand Down

0 comments on commit d75423b

Please sign in to comment.