0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2024-11-17 12:51:33 -05:00

Fix update checks

This commit is contained in:
Adrian Dvergsdal 2024-09-14 16:30:39 +02:00
parent 8a88b8f201
commit 46a8b3db48
No known key found for this signature in database
GPG key ID: C1E9E2D9552A42D2

View file

@ -37,7 +37,7 @@ jobs:
containerfile: Dockerfile-alpine
image: "$GITHUB_REPOSITORY"
tag: alpine
update-check: "apk update &>/dev/null && apk version -q -l '>'"
update-check: "apk update >/dev/null && apk list --upgradable"
secrets: inherit
debian:
@ -47,5 +47,5 @@ jobs:
containerfile: Dockerfile
image: "$GITHUB_REPOSITORY"
tag: debian
update-check: "apt-get update &>/dev/null && apt-get upgrade -s | grep '^Inst' || true"
update-check: "apt-get update >/dev/null && apt-get upgrade -s | grep '^Inst' || true"
secrets: inherit