Skip to content

chore: Update Github action package versions with SHA commit #2411

chore: Update Github action package versions with SHA commit

chore: Update Github action package versions with SHA commit #2411

Workflow file for this run

name: Lint Imports
on:
push:
branches: [ main ]
pull_request:
branches:
- '**'
jobs:
lint-imports:
name: Lint Python Imports
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: setup python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.12'
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install Dependencies
run: pip install -e . -r requirements/quality.txt
- name: Analyze imports
run: lint-imports