From 563bb0e1143c587ed518d7458c85087817848450 Mon Sep 17 00:00:00 2001 From: Alexander Lanin Date: Tue, 30 Jun 2026 08:14:58 +0200 Subject: [PATCH] chore: remove Renovate configuration Drops renovate.json and the renovate.yml workflow. Renovate is no longer used for dependency updates in this repository. --- .github/workflows/renovate.yml | 36 ---------------------------------- renovate.json | 14 ------------- 2 files changed, 50 deletions(-) delete mode 100644 .github/workflows/renovate.yml delete mode 100644 renovate.json diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml deleted file mode 100644 index f45871ac7..000000000 --- a/.github/workflows/renovate.yml +++ /dev/null @@ -1,36 +0,0 @@ -# ******************************************************************************* -# Copyright (c) 2025 Contributors to the Eclipse Foundation -# -# See the NOTICE file(s) distributed with this work for additional -# information regarding copyright ownership. -# -# This program and the accompanying materials are made available under the -# terms of the Apache License Version 2.0 which is available at -# https://www.apache.org/licenses/LICENSE-2.0 -# -# SPDX-License-Identifier: Apache-2.0 -# ******************************************************************************* - -name: Run renovate - -on: - schedule: - - cron: "0 19 * * *" # Every day at 9:00 PM Europe time - workflow_dispatch: {} # Allow manual runs too - -jobs: - renovate: - runs-on: ubuntu-latest - steps: - - name: 🛡️ Harden Runner - if: github.repository_owner == 'eclipse-score' - uses: step-security/harden-runner@v2.18.0 - with: - egress-policy: audit - - name: Checkout repository - uses: actions/checkout@v4.2.2 - - - name: Run renovate - uses: renovatebot/github-action@v42.0.2 - with: - token: ${{ secrets.RENOVATE_TOKEN }} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index aee0b0ad1..000000000 --- a/renovate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": ["config:base"], - "regexManagers": [ - { - "fileMatch": ["^MODULE\\.bazel$"], - "matchStrings": [ - "bazel_dep\\(name\\s*=\\s*\"(?[^\"]+)\",\\s*version\\s*=\\s*\"(?[^\"]+)\"" - ], - "datasourceTemplate": "github-releases", - "versioningTemplate": "semver", - "packageNameTemplate": "{{depName}}" - } - ] -}