Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2

updates:
# Java/Gradle deps
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 5
labels:
- "dependencies"
25 changes: 25 additions & 0 deletions .github/workflows/renovatebot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: renovatebot

on:
schedule:
- cron: "15 3 1 * *"
push:
branches:
- master
paths:
- '.github/workflows/**'
workflow_dispatch:

jobs:
renovatebot-check:
runs-on: ubuntu-24.04
environment: security
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Run renovatebot
uses: ConsenSys/github-actions/renovatebot@0dbddeeb180c249e624dc1681c67f22325daedd5 # main
with:
GH_APP_ID: ${{ secrets.GH_APP_ID }}
GH_PRIVATE_KEY: ${{ secrets.GH_PRIVATE_KEY }}
GH_REPOSITORY: ${{ github.repository }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
Comment thread
joshuafernandes marked this conversation as resolved.
Dismissed
3 changes: 3 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* @consensys/protocols

.github/workflows/ @consensys/protocols @consensys/protocol-galileo
15 changes: 15 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": ["github-actions"],
"dependencyDashboard": false,
"packageRules": [
{
"description": "Pin all GitHub Actions to SHA digests",
"matchManagers": ["github-actions"],
"pinDigests": true
}
Comment thread
cursor[bot] marked this conversation as resolved.
]
}
Loading