Check the dependencies for major version updates in azure-ai-ml #21
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 the dependencies for major version updates in azure-ai-ml | |
# This workflow checks for major version updates in the azure-ai-ml package | |
on: | |
schedule: | |
- cron: "0 0,12 * * *" # Runs at 00:00 and 12:00 UTC | |
workflow_dispatch: # Optional manual trigger | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install Dependencies | |
run: pip install packaging==25.0 requests==2.32.4 | |
- name: Run Script | |
run: python sdk/ml/azure-ai-ml/scripts/major_updates.py |