Skip to content

Commit

Permalink
fix: dependabot and golang tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalvas committed Oct 19, 2024
1 parent cbfd129 commit cbda3df
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
18 changes: 15 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
reviewers:
- vitalvas
assignees:
- vitalvas
- package-ecosystem: gomod
directory: "/"
directory: /
schedule:
interval: monthly
reviewers:
- "vitalvas"
- vitalvas
assignees:
- "vitalvas"
- vitalvas
groups:
dependencies:
patterns:
- '*'
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.23

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6

- name: Build
run: go build -v ./...

0 comments on commit cbda3df

Please sign in to comment.