Bump certifi from 2022.12.7 to 2023.7.22 #208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check packaging is up to date | |
on: [push, pull_request] | |
jobs: | |
check_setup_py: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: abatilo/actions-poetry@v2.1.6 | |
with: | |
poetry-version: 1.2.1 | |
- name: Run packaging update | |
run: bash githooks/update_packaging.sh | |
- name: Show changes on working copy | |
run: git status --porcelain=v1 -uno | |
- name: Show diff on working copy | |
run: git diff --cached | |
- name: Check if something changed after running the update script | |
run: | | |
[ -z "$(git status --porcelain=v1 -uno 2>/dev/null)" ] |