Skip to content

new dependency updates #1

new dependency updates

new dependency updates #1

name: Update Python Dependencies
# on:
# schedule:
# # Runs at 00:00 UTC every two weeks on Sunday
# - cron: '0 0 * * 0/2'
# workflow_dispatch:
# # Allows manual triggering of the workflow.
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11' # Use the Python version appropriate to your project
- name: Install Poetry
run: |
python -m pip install --upgrade pip setuptools wheel
pip install poetry
poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install --no-interaction
- name: Update Dependencies
run: poetry update
- name: Create a new branch and push changes
run: |
git config --global user.name 'CI Bot'
git config --global user.email 'ci-bot@example.com'
git checkout -b update-dependencies-$(date +'%Y-%m-%d')
git add poetry.lock
git commit -m "Update dependencies" || echo "No changes to commit"
git push --set-upstream origin update-dependencies-$(date +'%Y-%m-%d')
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
branch: update-dependencies-$(date +'%Y-%m-%d') # The branch to push changes
title: "Update dependencies $(date +'%Y-%m-%d')"
body: |
Updates dependencies to their latest versions.
labels: dependencies,automated PR
token: ${{ secrets.GITHUB_TOKEN }}