Skip to content

Commit

Permalink
Fix update checks
Browse files Browse the repository at this point in the history
  • Loading branch information
atmoz committed Sep 14, 2024
1 parent 88bb89d commit e5caf9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit e5caf9b

Please sign in to comment.