Check for Flatpak dependency updates #30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check for Flatpak dependency updates | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" # every day | |
| workflow_dispatch: | |
| jobs: | |
| flatpak-external-data-checker: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| branch: [ main ] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| ref: ${{ matrix.branch }} | |
| - uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest | |
| env: | |
| GIT_AUTHOR_NAME: Flatpak External Data Checker | |
| GIT_COMMITTER_NAME: Flatpak External Data Checker | |
| # email sets "github-actions[bot]" as commit author, see https://github.community/t/github-actions-bot-email-address/17204/6 | |
| GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com | |
| GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| args: --update --never-fork --require-important-update build-aux/flatpak/io.github.kolunmi.Bazaar.json |