Skip to content

Commit 8d05c5d

Browse files
authored
✨ Add package updater action for Dockerfile
1 parent e188ce6 commit 8d05c5d

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Run Package updates
2+
3+
# yamllint disable-line rule:truthy
4+
on:
5+
schedule:
6+
- cron: "0 0 * * FRI"
7+
workflow_dispatch:
8+
9+
jobs:
10+
check-for-updates:
11+
name: Check for updates
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
steps:
17+
- name: ↩️ Checkout
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
22+
- name: 🔧 Set git bot user
23+
shell: bash
24+
run: |
25+
git config user.name github-actions
26+
git config user.email [email protected]
27+
28+
- name: 🚀 Run Updater
29+
uses: Poeschl/container-package-updater@v3
30+
with:
31+
token: ${{ secrets.GITHUB_TOKEN }}
32+
containerFile: syncthing/Dockerfile
33+
osVersion: 3.20
34+
architectures: "x86_64, aarch64, armhf, armv7, x86"

0 commit comments

Comments
 (0)