Skip to content

Bump boto3 from 1.35.18 to 1.35.21 #1736

Bump boto3 from 1.35.18 to 1.35.21

Bump boto3 from 1.35.18 to 1.35.21 #1736

Workflow file for this run

name: Lint
on: [push, pull_request]
env:
PYTHON_VERSION: 3.9
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
uses: ThePalaceProject/circulation/.github/actions/poetry@main
with:
version: "1.5.1"
- name: Install Pre-commit
run: |
poetry install --only ci
env:
POETRY_VIRTUALENVS_CREATE: false
- name: Restore pre-commit cache
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-py${{ env.PYTHON_VERSION }}-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: pre-commit-${{ runner.os }}-py${{ env.PYTHON_VERSION }}
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure