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:
parent
8a88b8f201
commit
46a8b3db48
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue