From cbda3df1b620907711783e829b415f1cff99f69a Mon Sep 17 00:00:00 2001 From: Vitaliy Vasylenko Date: Sat, 19 Oct 2024 18:50:50 -0400 Subject: [PATCH] fix: dependabot and golang tests --- .github/dependabot.yml | 18 +++++++++++++++--- .github/workflows/go.yml | 8 ++++---- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 62b3e9d..1b3e120 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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: + - '*' diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2d53926..4eaf6d8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 ./...