Skip to content

Pipenv update

Pipenv update #26

Workflow file for this run

name: Pipenv update
on:
schedule:
- cron: "0 0 1 * *"
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: 'staging'
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Set up pipenv
run: python -m pip install --upgrade pip wheel pipenv
- name: Update packages
run: pipenv update
- name: Create pr
uses: peter-evans/create-pull-request@v3
with:
branch: 'feature/update'
title: Update python packages