aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-01-24 19:49:24 +0300
committerValentin Popov <valentin@popov.link>2025-01-24 19:50:13 +0300
commit0dc37e96042d905cad6653615e2770db66164054 (patch)
tree7f154f81c41ff6a49ccb09c5d3864c1eeb6f0cc3
parent3d2e970225a6614305a6e9bdfc154cb53e427576 (diff)
downloadfparkan-0dc37e96042d905cad6653615e2770db66164054.tar.xz
fparkan-0dc37e96042d905cad6653615e2770db66164054.zip
Outdated CI and Renovate configurations have been removed, and a new Dependabot configuration file for dependency management has been added.
-rw-r--r--.gitea/workflows/renovate.yml26
-rw-r--r--.github/dependabot.yml14
-rw-r--r--.github/workflows/.gitkeep0
-rw-r--r--.github/workflows/ci.yml12
-rw-r--r--.github/workflows/test.yml (renamed from .gitea/workflows/ci.yml)4
-rw-r--r--.renovaterc12
-rw-r--r--renovate.config.cjs6
7 files changed, 21 insertions, 53 deletions
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
--- a/.github/workflows/.gitkeep
+++ /dev/null
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/.gitea/workflows/ci.yml b/.github/workflows/test.yml
index 2f6a72d..01581b8 100644
--- a/.gitea/workflows/ci.yml
+++ b/.github/workflows/test.yml
@@ -1,4 +1,4 @@
-name: test suite
+name: Test
on: [push, pull_request]
jobs:
@@ -9,4 +9,4 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all
- - run: cargo test --all-features \ No newline at end of file
+ - 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 <renovatebot@noreply.localhost>",
- optimizeForDisabled: true,
- platform: "gitea",
-};