Browse Source

use digestabot instead

Signed-off-by: Daniel Thamdrup <dallemon@protonmail.com>
pull/2102/head
Daniel Thamdrup 4 months ago
parent
commit
9216db98e7
No account linked to committer's email address
2 changed files with 24 additions and 16 deletions
  1. 0
    16
      .github/dependabot.yml
  2. 24
    0
      .github/workflows/digestabot.yml

+ 0
- 16
.github/dependabot.yml View File

@@ -1,16 +0,0 @@
1
----
2
-# To get started with Dependabot version updates, you'll need to specify which
3
-# package ecosystems to update and where the package manifests are located.
4
-# Please see the documentation for all configuration options:
5
-# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
6
-
7
-version: 2
8
-updates:
9
-  - package-ecosystem: "docker"
10
-    directory: "/"
11
-    schedule:
12
-      interval: "weekly"
13
-    ignore:
14
-      - dependency-name: "*"
15
-        update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]
16
-...

+ 24
- 0
.github/workflows/digestabot.yml View File

@@ -0,0 +1,24 @@
1
+
2
+name: Image digest update
3
+
4
+on:
5
+  workflow_dispatch:
6
+  schedule:
7
+    # At the end of every day
8
+    - cron: "0 0 * * *"
9
+
10
+jobs:
11
+  image-update:
12
+    name: Image digest update
13
+    runs-on: ubuntu-latest
14
+
15
+    permissions:
16
+      contents: write # to push the updates
17
+      pull-requests: write # to open Pull requests
18
+      id-token: write # used to sign the commits using gitsign
19
+
20
+    steps:
21
+    - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
22
+    - uses: chainguard-dev/digestabot@4298e530896fb4164f9c89030c561b75b9321149
23
+      with:
24
+        token: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save