Skip to content

Commit d076583

Browse files
authored
build: Add renovate workflow (#118)
2 parents 95786b8 + cb78ed6 commit d076583

File tree

4 files changed

+22
-19
lines changed

4 files changed

+22
-19
lines changed

.github/dependabot.yaml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/renovate.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Renovate
2+
on:
3+
workflow_dispatch:
4+
5+
schedule:
6+
- cron: '0 5,7 * * *'
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
renovate:
13+
uses: qubesome/.github/actions/renovate.yml@main
14+
secrets:
15+
RENOVATE_PRIVATE_KEY: ${{ secrets.RENOVATE_PRIVATE_KEY }}
16+
RENOVATE_APP_ID: ${{ secrets.RENOVATE_APP_ID }}

.renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["github>qubesome/.github"]
4+
}

hack/base.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
# renovate: datasource=github-tags depName=golangci/golangci-lint
12
GOLANGCI_VERSION ?= v2.5.0
3+
# renovate: datasource=github-tags depName=protocolbuffers/protobuf
24
PROTOC_VERSION ?= 32.1
35
TOOLS_BIN := $(shell mkdir -p build/tools && realpath build/tools)
46

0 commit comments

Comments
 (0)