Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSven Serlier <85389871+wrt54g@users.noreply.github.com>2022-09-02 12:30:47 +0200
committerGitHub <noreply@github.com>2022-09-02 12:30:47 +0200
commit01d44c5a3a4f4140b11fedb8cd99d9fb9d6a2ac9 (patch)
tree977139d0b223516ee262724e15adad879adf2f39 /.github
parenta335f100fc95377374c47aab5b981e5c1c73aa00 (diff)
Update actions (#1362)
* Update actions/checkout to v3 * Update actions/checkout to v3 * Update actions * Update actions/checkout to v3 * Update actions/checkout to v3 * Update actions * Update actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/bandit.yaml4
-rw-r--r--.github/workflows/flake8.yaml4
-rw-r--r--.github/workflows/iso-build.yaml4
-rw-r--r--.github/workflows/mypy.yaml2
-rw-r--r--.github/workflows/pytest.yaml4
-rw-r--r--.github/workflows/python-build.yml6
-rw-r--r--.github/workflows/python-publish.yml4
7 files changed, 14 insertions, 14 deletions
diff --git a/.github/workflows/bandit.yaml b/.github/workflows/bandit.yaml
index 2123ba9d..84c63348 100644
--- a/.github/workflows/bandit.yaml
+++ b/.github/workflows/bandit.yaml
@@ -6,7 +6,7 @@ jobs:
container:
image: archlinux:latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: pacman --noconfirm -Syu bandit
- name: Security checkup with Bandit
- run: bandit -r archinstall || exit 0 \ No newline at end of file
+ run: bandit -r archinstall || exit 0
diff --git a/.github/workflows/flake8.yaml b/.github/workflows/flake8.yaml
index f7cfe064..d9db80e9 100644
--- a/.github/workflows/flake8.yaml
+++ b/.github/workflows/flake8.yaml
@@ -6,9 +6,9 @@ jobs:
container:
image: archlinux:latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: pacman --noconfirm -Syu python python-pip
- run: python -m pip install --upgrade pip
- run: pip install flake8
- name: Lint with flake8
- run: flake8 \ No newline at end of file
+ run: flake8
diff --git a/.github/workflows/iso-build.yaml b/.github/workflows/iso-build.yaml
index 6464b4a2..ab4e6f5f 100644
--- a/.github/workflows/iso-build.yaml
+++ b/.github/workflows/iso-build.yaml
@@ -26,7 +26,7 @@ jobs:
image: archlinux:latest
options: --privileged
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: pwd
- run: find .
- run: cat /etc/os-release
@@ -43,7 +43,7 @@ jobs:
- run: echo -e "git\npython\npython-pip\npython-build\npython-flit\npython-setuptools\npython-wheel" >> /tmp/archlive/packages.x86_64
- run: find /tmp/archlive
- run: cd /tmp/archlive; mkarchiso -v -w work/ -o out/ ./
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: Arch Live ISO
path: /tmp/archlive/out/*.iso
diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml
index c03cd3cf..160faa53 100644
--- a/.github/workflows/mypy.yaml
+++ b/.github/workflows/mypy.yaml
@@ -6,7 +6,7 @@ jobs:
container:
image: archlinux:latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: pacman --noconfirm -Syu python mypy python-pip
- run: python -m pip install --upgrade pip
- run: pip install fastapi pydantic
diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml
index 39ef62c9..568a6e6c 100644
--- a/.github/workflows/pytest.yaml
+++ b/.github/workflows/pytest.yaml
@@ -7,9 +7,9 @@ jobs:
image: archlinux:latest
options: --privileged
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: pacman --noconfirm -Syu python python-pip qemu gcc
- run: python -m pip install --upgrade pip
- run: pip install pytest
- name: Test with pytest
- run: python -m pytest || exit 0 \ No newline at end of file
+ run: python -m pytest || exit 0
diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml
index 6196f9d8..4cd32a93 100644
--- a/.github/workflows/python-build.yml
+++ b/.github/workflows/python-build.yml
@@ -8,9 +8,9 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
@@ -20,7 +20,7 @@ jobs:
- name: Build archinstall
run: |
python -m build
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: archinstall
path: dist/*
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml
index 3d0ec253..dd25a105 100644
--- a/.github/workflows/python-publish.yml
+++ b/.github/workflows/python-publish.yml
@@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies