Skip to content

Don't shadow json lib name from outer scope #1458

Don't shadow json lib name from outer scope

Don't shadow json lib name from outer scope #1458

Workflow file for this run

name: Repin pip dependencies
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pipenv'
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv
if [ -f Pipfile ]; then pipenv sync --dev; fi
- name: Run repip
run: pipenv run python dev.py repip
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
commit-message: Unpin git dependency
title: Unpin git dependency
branch: repip
labels: merge when ready
token: ${{ secrets.VORPAL_PAT }}