Fix minor copy/paste errors in GitHub workflow configs (#2672)
This commit is contained in:
parent
876d155be9
commit
6ba0e5c441
|
|
@ -1,7 +1,7 @@
|
||||||
on: [ push, pull_request ]
|
on: [ push, pull_request ]
|
||||||
name: Bandit security checkup
|
name: Bandit security checkup
|
||||||
jobs:
|
jobs:
|
||||||
flake8:
|
bandit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: archlinux/archlinux:latest
|
image: archlinux/archlinux:latest
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
pacman --noconfirm -Syyu
|
pacman --noconfirm -Syyu
|
||||||
pacman --noconfirm -Sy python-pip python-pyparted python-simple-term-menu pkgconfig gcc
|
pacman --noconfirm -Sy python-pip python-pyparted python-simple-term-menu pkgconfig gcc
|
||||||
- run: pip install --break-system-packages --upgrade pip
|
- run: pip install --break-system-packages --upgrade pip
|
||||||
# this will install the exact version of mypy that is in the pyproject.toml file
|
# this will install the exact version of flake8 that is in the pyproject.toml file
|
||||||
- name: Install archinstall dependencies
|
- name: Install archinstall dependencies
|
||||||
run: pip install --break-system-packages .[dev]
|
run: pip install --break-system-packages .[dev]
|
||||||
- run: python --version
|
- run: python --version
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue