name: Checking deb versions on: schedule: - cron: '0 * * * *' workflow_dispatch: jobs: check-and-update: runs-on: ubuntu-latest permissions: contents: write steps: - name: Checkout repository uses: actions/checkout@v5 with: token: ${{ secrets.PERSONAL_TOKEN }} - name: Set up Python uses: actions/setup-python@v6 with: python-version: 3.12.2 - name: Install dependencies run: | python -m pip install --upgrade pip pip install requests packaging - name: Run version checker env: PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }} run: python check_deb_versions.py