diff --git a/.forgejo/workflows/package-check.yml b/.forgejo/workflows/package-check.yml index 29a797d..c84bda4 100644 --- a/.forgejo/workflows/package-check.yml +++ b/.forgejo/workflows/package-check.yml @@ -20,7 +20,15 @@ jobs: steps: - name: Install dependencies shell: sh - run: apk add --no-cache git nodejs npm bash sed $PACKAGE + run: | + cat > /etc/apk/repositories << EOF + https://dl-cdn.alpinelinux.org/alpine/edge/main + https://dl-cdn.alpinelinux.org/alpine/edge/community + https://dl-cdn.alpinelinux.org/alpine/edge/testing + EOF + apk upgrade --no-cache -a + apk add --no-cache git nodejs npm bash sed $PACKAGE + - uses: actions/checkout@v3