Skip to content

Commit 894dd22

Browse files
chore(deps): pin dependencies
1 parent 083194f commit 894dd22

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/bandit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container:
77
image: archlinux/archlinux:latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1010
- run: pacman --noconfirm -Syu bandit
1111
- name: Security checkup with Bandit
1212
run: bandit -r archinstall || exit 0

.github/workflows/flake8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container:
77
image: archlinux/archlinux:latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1010
- name: Prepare arch
1111
run: |
1212
pacman-key --init

.github/workflows/github-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
image: archlinux/archlinux:latest
2222
options: --privileged
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: actions/setup-python@v5
24+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
25+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
2626
- name: Install pre-dependencies
2727
run: |
2828
pacman -Sy --noconfirm tree git python-pyparted python-setuptools python-sphinx python-sphinx_rtd_theme python-build python-installer python-wheel
2929
- name: Sphinx build
3030
run: |
3131
sphinx-build docs _build
3232
- name: Deploy to GitHub Pages
33-
uses: peaceiris/actions-gh-pages@v4
33+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
3434
if: ${{ github.event_name != 'pull_request' }}
3535
with:
3636
publish_branch: gh-pages

.github/workflows/iso-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
image: archlinux/archlinux:latest
2727
options: --privileged
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3030
- run: pwd
3131
- run: find .
3232
- run: cat /etc/os-release
3333
- run: pacman-key --init
3434
- run: pacman --noconfirm -Sy archlinux-keyring
3535
- run: ./build_iso.sh
36-
- uses: actions/upload-artifact@v4
36+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
3737
with:
3838
name: Arch Live ISO
3939
path: /tmp/archlive/out/*.iso

.github/workflows/mypy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container:
77
image: archlinux/archlinux:latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1010
- name: Prepare arch
1111
run: |
1212
pacman-key --init

.github/workflows/pylint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container:
77
image: archlinux/archlinux:latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1010
- name: Prepare arch
1111
run: |
1212
pacman-key --init

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
image: archlinux/archlinux:latest
88
options: --privileged
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1111
- name: Prepare arch
1212
run: |
1313
pacman-key --init

.github/workflows/python-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
image: archlinux/archlinux:latest
1212
options: --privileged
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1515
- name: Prepare arch
1616
run: |
1717
pacman-key --init
@@ -33,7 +33,7 @@ jobs:
3333
archinstall --script guided -v
3434
archinstall --script only_hd -v
3535
archinstall --script minimal -v
36-
- uses: actions/upload-artifact@v4
36+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
3737
with:
3838
name: archinstall
3939
path: dist/*

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
1919
with:
2020
python-version: '3.x'
2121
- name: Install dependencies

.github/workflows/ruff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ jobs:
44
ruff:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
88
- uses: astral-sh/ruff-action@9828f49eb4cadf267b40eaa330295c412c68c1f9 # v3.2.2

0 commit comments

Comments
 (0)