Skip to content

Commit

Permalink
chores: dependabot & cleanup (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
butuzov committed Jul 19, 2023
1 parent 18e2c50 commit 826d096
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .actrc

This file was deleted.

12 changes: 12 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
day: "sunday"
time: "11:00" # 11am UTC
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

Expand Down Expand Up @@ -55,10 +55,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3.6.0
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true
args: -D deadcode
args: -D deadcode --skip-dirs "^(cmd|testdata)"

12 changes: 12 additions & 0 deletions .goreleaser.yaml
Expand Up @@ -37,6 +37,18 @@ builds:
checksum:
name_template: 'checksums.txt'

changelog:
sort: asc
filters:
exclude:
- '(?i)^docs?:'
- '(?i)^docs\([^:]+\):'
- '(?i)^docs\[[^:]+\]:'
- '^tests?:'
- '(?i)^dev:'
- Merge pull request
- Merge branch

archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}'
replacements:
Expand Down

0 comments on commit 826d096

Please sign in to comment.