diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 95ca9751..d5f7eaed 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,15 @@ version: 2 updates: - - package-ecosystem: "" # See documentation for possible values - directory: "/" # Location of package manifests + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + # Maintain dependencies for Golang + - package-ecosystem: "gomod" + directory: "/" schedule: interval: "daily" diff --git a/.github/renovate.json b/.github/renovate.json deleted file mode 100644 index c597bf3f..00000000 --- a/.github/renovate.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "extends": [ - "config:base" - ], - "postUpdateOptions": ["gomodTidy"], - "packageRules": [ - { - "matchUpdateTypes": ["minor", "patch", "pin", "digest"], - "automerge": true - }, - { - "groupName": "all deps", - "separateMajorMinor": true, - "groupSlug": "all", - "packagePatterns": [ - "*" - ] - } - ] -} diff --git a/.github/stale.sh b/.github/stale.sh deleted file mode 100755 index 8a345c46..00000000 --- a/.github/stale.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -ex - -export PATH=$PATH:$(pwd)/bin -export GO111MODULE=on -export GOBIN=$(pwd)/bin - -#go get github.com/rvflash/goup@v0.4.1 - -#goup -v ./... -#go get github.com/psampaz/go-mod-outdated@v0.6.0 -go list -u -m -mod=mod -json all | go-mod-outdated -update -direct -ci || true - -#go list -u -m -json all | go-mod-outdated -update