3 Commits

Author SHA1 Message Date
238c2647bb fix: install python-passlib
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 8s
Build / build-arch-linux (push) Successful in 1m24s
Build / build-rocky-linux-8 (push) Successful in 2m42s
Build / build-rocky-linux-9 (push) Successful in 1m43s
Release / push-arch-linux (push) Successful in 2m33s
Release / push-rocky-linux-8 (push) Successful in 3m40s
Release / push-rocky-linux-9 (push) Successful in 2m2s
Release / sync-to-hub-docker-io (push) Successful in 1m22s
2026-02-02 15:24:21 +01:00
843d8b7691 Merge pull request 'chore(deps): update docker/login-action action to v3.7.0' (#62) from renovate/actions into master
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-arch-linux (push) Successful in 1m16s
Build / build-rocky-linux-8 (push) Successful in 2m46s
Build / build-rocky-linux-9 (push) Successful in 1m54s
2026-02-01 10:51:03 +00:00
b4c052fc31 chore(deps): update docker/login-action action to v3.7.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 12s
Build / build-arch-linux (pull_request) Successful in 1m14s
Build / build-rocky-linux-8 (pull_request) Successful in 2m53s
Build / build-rocky-linux-9 (pull_request) Successful in 1m47s
2026-02-01 10:46:38 +00:00
4 changed files with 6 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ jobs:
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.12.0
- uses: docker/login-action@v3.6.0
- uses: docker/login-action@v3.7.0
with:
registry: git.cryptic.systems
username: ${{ github.repository_owner }}
@@ -36,7 +36,7 @@ jobs:
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.12.0
- uses: docker/login-action@v3.6.0
- uses: docker/login-action@v3.7.0
with:
registry: git.cryptic.systems
username: ${{ github.repository_owner }}
@@ -59,7 +59,7 @@ jobs:
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.12.0
- uses: docker/login-action@v3.6.0
- uses: docker/login-action@v3.7.0
with:
registry: git.cryptic.systems
username: ${{ github.repository_owner }}

View File

@@ -12,6 +12,7 @@ RUN pacman --sync --sysupgrade --refresh --noconfirm && \
python-boto3 \
python-botocore \
python-setuptools \
python-passlib \
python-pip \
python-pytest \
python-yaml \

View File

@@ -17,7 +17,7 @@ RUN dnf update --assumeyes && \
RUN alternatives --set python3 /usr/bin/python3.12 && \
curl --fail --silent --location https://bootstrap.pypa.io/get-pip.py --output get-pip.py && \
python3 get-pip.py && \
pip install ansible-lint boto3
pip install ansible-lint boto3 passlib
# Create default ansible inventory file
RUN mkdir --parents /etc/ansible

View File

@@ -15,7 +15,7 @@ RUN dnf update --assumeyes && \
RUN ln --symbolic --force /usr/bin/python3.12 /usr/bin/python3 && \
curl --fail --silent --location https://bootstrap.pypa.io/get-pip.py --output get-pip.py && \
python3 get-pip.py && \
pip install ansible-lint boto3
pip install ansible-lint boto3 passlib
# Create default ansible inventory file
RUN mkdir --parents /etc/ansible