mirror of
https://github.com/shenxn/protonmail-bridge-docker.git
synced 2026-03-26 21:35:58 +00:00
- Add libfido2-dev, libcbor-dev to build deps; libfido2-1, libcbor0 to runtime (fixes #135) - Make bridge binaries read-only to block built-in auto-updater at runtime - Add HEALTHCHECK to Dockerfile - Fix long-uptime stdin stability: replace cat pipe with sleep infinity - Clean up stale GPG agent sockets on container startup - Update maintainer label - Repoint build.yaml to dancwilliams Docker Hub and GHCR repos - Use clean version/latest tags (drop -build suffix) - Fix missing checkout in merge job - Add workflow_dispatch and pip install to update-check.yaml - Remove Gitee mirror workflow - Remove legacy deb build (Dockerfile, workflow, and deb/ directory)
28 lines
627 B
YAML
28 lines
627 B
YAML
name: update check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- .github/workflows/update-check.yaml
|
|
- update-check.py
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/update-check.yaml
|
|
- update-check.py
|
|
schedule:
|
|
- cron: '0 0 * * *' # runs every day at midnight UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.PERSONAL_TOKEN }}
|
|
- name: Install dependencies
|
|
run: pip install requests
|
|
- name: Check Update
|
|
run: python3 update-check.py ${{ github.event_name == 'pull_request' }}
|