From 0dc37e96042d905cad6653615e2770db66164054 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 24 Jan 2025 20:49:24 +0400 Subject: Outdated CI and Renovate configurations have been removed, and a new Dependabot configuration file for dependency management has been added. --- .gitea/workflows/ci.yml | 12 ------------ .gitea/workflows/renovate.yml | 26 -------------------------- .github/dependabot.yml | 14 ++++++++++++++ .github/workflows/.gitkeep | 0 .github/workflows/ci.yml | 12 ------------ .github/workflows/test.yml | 12 ++++++++++++ .renovaterc | 12 +++++------- renovate.config.cjs | 6 ------ 8 files changed, 31 insertions(+), 63 deletions(-) delete mode 100644 .gitea/workflows/ci.yml delete mode 100644 .gitea/workflows/renovate.yml create mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/.gitkeep delete mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/test.yml delete mode 100644 renovate.config.cjs diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index 2f6a72d..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: test suite -on: [push, pull_request] - -jobs: - test: - name: cargo test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - run: cargo check --all - - run: cargo test --all-features \ No newline at end of file diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml deleted file mode 100644 index 64ed142..0000000 --- a/.gitea/workflows/renovate.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: RenovateBot - -on: - schedule: - - cron: "@daily" - push: - branches: - - master - -jobs: - renovate: - container: ghcr.io/renovatebot/renovate:39 - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Run renovate - run: | - renovate - env: - LOG_LEVEL: debug - RENOVATE_CONFIG_FILE: renovate.config.cjs - RENOVATE_REPOSITORIES: ${{ gitea.repository }} - RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cf918a7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/.gitkeep b/.github/workflows/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 2f6a72d..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: test suite -on: [push, pull_request] - -jobs: - test: - name: cargo test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - run: cargo check --all - - run: cargo test --all-features \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..01581b8 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,12 @@ +name: Test +on: [push, pull_request] + +jobs: + test: + name: cargo test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - run: cargo check --all + - run: cargo test --all-features diff --git a/.renovaterc b/.renovaterc index 8aac33c..46fc70b 100644 --- a/.renovaterc +++ b/.renovaterc @@ -1,24 +1,22 @@ { - "assignees": [ - "valentineus" - ], "extends": [ "config:recommended", ":disableDependencyDashboard" ], + "automerge": true, "packageRules": [ { "groupName": "all digest updates", "groupSlug": "all-digest", - "matchPackagePatterns": [ - "*" - ], "matchUpdateTypes": [ "minor", "patch", "pin", "digest" + ], + "matchPackageNames": [ + "*" ] } ] -} \ No newline at end of file +} diff --git a/renovate.config.cjs b/renovate.config.cjs deleted file mode 100644 index 44bc458..0000000 --- a/renovate.config.cjs +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - endpoint: "https://code.popov.link", - gitAuthor: "RenovateBot ", - optimizeForDisabled: true, - platform: "gitea", -}; -- cgit v1.2.3