Skip to content

Update Packages

Update Packages #2

name: Update Packages
on:
workflow_dispatch:
permissions:
contents: write
pull-requests: write
issues: write
jobs:
update-packages:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Dependencies
run: python -m pip install -U pip wheel nox
- name: Update Packages and Create PR
run: python ./.github/workflows/update_packages.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}