Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
29 changes: 29 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: 2

updates:
# Docusaurus + npm deps
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 5
labels:
- "dependencies"
groups:
docusaurus:
patterns:
- "@docusaurus/*"
react:
patterns:
- "react*"
others:
patterns:
- "*"

# GitHub Actions updates
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/algolia-search-scraper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
"docs",
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- id: config
name: Read ${{ matrix.version }}.json
shell: bash
run: |
content=$(cat ./.github/config/${{ matrix.version }}.json | jq -r tostring)
echo "configJSON=$content" >> $GITHUB_OUTPUT
- name: Checkout algolia/docsearch-scraper
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: algolia/docsearch-scraper
path: "./algolia"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build
uses: ConsenSys/github-actions/docs-build@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/case.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Case check action
uses: ConsenSys/github-actions/docs-case-check@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
file-extensions: [".md", ".mdx"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: LinkCheck
uses: ConsenSys/github-actions/docs-link-check@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Lint code
uses: ConsenSys/github-actions/docs-lint-all@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Release
uses: Consensys/github-actions/docs-release@main
with:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/renovatebot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: renovatebot

on:
push:
branches:
- main
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@60d442d6d385b414c8e00eb049a85f56f9fd7be7 # main
with:
GH_APP_ID: ${{ secrets.GH_APP_ID }}
GH_PRIVATE_KEY: ${{ secrets.GH_PRIVATE_KEY }}
GH_REPOSITORY: ${{ github.repository }}
2 changes: 1 addition & 1 deletion .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Vale
uses: Consensys/github-actions/docs-spelling-check@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Run trivy scanner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Trivy
uses: ConsenSys/github-actions/trivy@main
with:
Expand Down
3 changes: 3 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* @consensys/protocol-pliny

.github/workflows/ @consensys/protocol-galileo
Loading
Loading