Skip to content

Dependency Check

Dependency Check #19

name: Dependency Check
on:
schedule:
- cron: "0 0 */14 * *"
workflow_dispatch:
permissions:
contents: write
issues: write
jobs:
check-releases:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync
- name: Run check script
run: uv run scripts/check_releases.py
- name: Commit and push README update
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add tracked_versions.json README.md
git commit -m "πŸ“ Update timestamps in README [workflow]"
git push