We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a88b8f commit 46a8b3dCopy full SHA for 46a8b3d
.github/workflows/build.yml
@@ -37,7 +37,7 @@ jobs:
37
containerfile: Dockerfile-alpine
38
image: "$GITHUB_REPOSITORY"
39
tag: alpine
40
- update-check: "apk update &>/dev/null && apk version -q -l '>'"
+ update-check: "apk update >/dev/null && apk list --upgradable"
41
secrets: inherit
42
43
debian:
@@ -47,5 +47,5 @@ jobs:
47
containerfile: Dockerfile
48
49
tag: debian
50
- 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"
51
0 commit comments