Skip to content

Commit

Permalink
Merge pull request #443 from maykinmedia/feature/dependabot-autoupdate
Browse files Browse the repository at this point in the history
Add github action to check if OAF is Up to Date
  • Loading branch information
Coperh authored Sep 24, 2024
2 parents 43b6f7d + 21c1686 commit 9de79f1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/oaf-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check Open API Framework Version

on:
workflow_dispatch:
schedule:
- cron: '36 0 * * 0'

jobs:
run:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -U pip-tools
- name: Run compile dependencies
run: ./bin/compile_dependencies.sh --upgrade-package open-api-framework

- name: Check git diff
run: git diff --exit-code -- requirements/*.txt

0 comments on commit 9de79f1

Please sign in to comment.