Skip to content

Commit

Permalink
✨ Add package updater action for Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Poeschl authored Oct 28, 2024
1 parent e188ce6 commit 8d05c5d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/addon-update-packages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run Package updates

# yamllint disable-line rule:truthy
on:
schedule:
- cron: "0 0 * * FRI"
workflow_dispatch:

jobs:
check-for-updates:
name: Check for updates
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: 🔧 Set git bot user
shell: bash
run: |
git config user.name github-actions
git config user.email [email protected]
- name: 🚀 Run Updater
uses: Poeschl/container-package-updater@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
containerFile: syncthing/Dockerfile
osVersion: 3.20
architectures: "x86_64, aarch64, armhf, armv7, x86"

0 comments on commit 8d05c5d

Please sign in to comment.