diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57de777..e3ff0b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,10 +97,10 @@ jobs: name: 'fvcbm-windows.exe' path: fvcbm.exe - alpine-3_19-x86: - name: 'Alpine 3.19 with MUSL' + alpine-3_20-x86: + name: 'Alpine 3.20 with MUSL' runs-on: ubuntu-latest - container: 'alpine:3.19' + container: 'alpine:3.20' steps: - uses: actions/checkout@v4 - name: 'Install deps' @@ -130,8 +130,8 @@ jobs: name: 'fvcbm-linux-x86' path: i386root/root/fvcbm/fvcbm - alpine-3_19-armv7: - name: 'Alpine 3.19 with MUSL on armv7' + alpine-3_20-armv7: + name: 'Alpine 3.20 with MUSL on armv7' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -141,7 +141,7 @@ jobs: platforms: linux/arm - name: 'Perform install, build, test' run: > - docker run --rm -v "$(pwd):/${{ github.workspace }}" -w ${{ github.workspace }} --platform linux/arm alpine:3.19 sh -c ' + docker run --rm -v "$(pwd):/${{ github.workspace }}" -w ${{ github.workspace }} --platform linux/arm alpine:3.20 sh -c ' cat /etc/os-release && apk add --no-cache build-base groff && make linux CFLAGS="-static -O2" &&