Skip to content

Commit

Permalink
Merge pull request #2038 from svartkanin/fix-github-action
Browse files Browse the repository at this point in the history
Fix github action
  • Loading branch information
svartkanin authored Sep 13, 2023
2 parents 81ef09c + be7ffbd commit 9bfd8c6
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bandit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu bandit
- name: Security checkup with Bandit
run: bandit -r archinstall || exit 0
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu python python-pip
- run: pip install --break-system-packages --upgrade pip
- run: pip install --break-system-packages flake8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iso-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
image: archlinux:latest
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pwd
- run: find .
- run: cat /etc/os-release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu python mypy python-pip
- run: pip install --break-system-packages --upgrade pip
- run: pip install --break-system-packages fastapi pydantic
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
image: archlinux:latest
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu python python-pip qemu gcc
- run: python -m pip install --break-system-packages --upgrade pip
- run: pip install --break-system-packages pytest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ jobs:
image: archlinux:latest
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Prepare arch
run: |
pacman-key --init
pacman --noconfirm -Sy archlinux-keyring
pacman --noconfirm -Syyu
pacman --noconfirm -Sy python-pip python-pyparted python-simple-term-menu pkgconfig gcc
- name: Install build dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/translation-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu python
- run: cd archinstall/locales
- run: pwd
Expand Down

0 comments on commit 9bfd8c6

Please sign in to comment.