Skip to content

Commit

Permalink
new dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel-brostrom committed Mar 28, 2024
1 parent 46f33ec commit 671dcab
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/dependabot.yml

This file was deleted.

51 changes: 51 additions & 0 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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 }}

0 comments on commit 671dcab

Please sign in to comment.