diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b333df2..24221ec3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,7 +129,7 @@ jobs: - name: Install requirements (alpine) run: | set -eux - apk add bash cargo + apk --no-cache add bash cargo shell: sh if: startsWith(matrix.container, 'alpine') - uses: actions/checkout@v3 diff --git a/main.sh b/main.sh index b0e229b5..d7ef6ef7 100755 --- a/main.sh +++ b/main.sh @@ -275,9 +275,9 @@ snap_install() { } apk_install() { if type -P doas &>/dev/null; then - doas apk add --no-cache "$@" + doas apk --no-cache add "$@" else - apk add --no-cache "$@" + apk --no-cache add "$@" fi } dnf_install() {