From 9f2e79799cd6b3b03440fba1d115851ba7c0ad42 Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Fri, 20 Dec 2024 22:51:05 +0100 Subject: [PATCH] Automated version check of dependencies via dependabot --- .github/dependabot.yml | 17 +++++++++++++++++ .github/workflows/test.yml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..111fb5c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + # Enable version updates for GitHub action workflows + - package-ecosystem: "github-actions" + directory: "/" + # Check for updates to GitHub Actions once per week + schedule: + interval: "weekly" + time: "19:00" + open-pull-requests-limit: 10 + # Enable version updates for Go modules + - package-ecosystem: "gomod" + directory: / + # Check for updates to Go modules once per week + schedule: + interval: "weekly" + open-pull-requests-limit: 10 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7752de2..9c33103 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.58 + version: v1.62.2 - name: Test run: go test ./...