-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
118 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,3 @@ jobs: | |
gh workflow run goreleaser.yml --ref $TAG | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: lint-test | ||
on: | ||
push: | ||
schedule: | ||
# Mondays 7:15 EST | ||
- cron: '15 11 * * 1' | ||
|
||
permissions: | ||
contents: read | ||
|
||
|
@@ -15,6 +13,8 @@ jobs: | |
|
||
- uses: actions/setup-go@v5 | ||
|
||
- uses: hadolint/[email protected] | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: validate renovate.json5 | ||
|
||
on: | ||
pull_request: | ||
|
||
env: | ||
LOG_LEVEL: debug | ||
|
||
jobs: | ||
renovate-config-validator: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
|
||
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npx -p renovate renovate-config-validator renovate.json5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"extends": [ | ||
"config:best-practices", | ||
":rebaseStalePrs", | ||
"regexManagers:dockerfileVersions" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch", | ||
"digest" | ||
], | ||
"groupName": "all non-major dependencies", | ||
"schedule": [ | ||
"after 10pm on Friday" | ||
] | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"gomod" | ||
], | ||
"postUpdateOptions": [ | ||
"gomodTidy" | ||
], | ||
"groupName": "gomod updates" | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"dockerfile" | ||
], | ||
"groupName": "Dockerfile updates" | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"github-actions" | ||
], | ||
"groupName": "GitHub Actions updates", | ||
"schedule": [ | ||
"after 10pm on Friday" | ||
] | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchUpdateTypes": [ | ||
"major" | ||
], | ||
"groupName": "all major updates", | ||
"schedule": [ | ||
"after 10pm on the first day of the month" | ||
] | ||
} | ||
], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"osvVulnerabilityAlerts": true, | ||
"dependencyDashboardOSVVulnerabilitySummary": "unresolved", | ||
"vulnerabilityAlerts": { | ||
"enabled": true | ||
} | ||
} |