diff --git a/.github/workflows/build-containers.yaml b/.github/workflows/build-containers.yaml index 46d4f46..6726dc4 100644 --- a/.github/workflows/build-containers.yaml +++ b/.github/workflows/build-containers.yaml @@ -33,17 +33,17 @@ jobs: - name: Log in to Quay Container Registry if: github.event_name == 'push' - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: quay.io username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_PASS }} - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Inspect Container Names run: | @@ -51,7 +51,7 @@ jobs: printf "Container: ${container}\n" - name: Build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 if: github.event_name != 'push' with: file: ${{matrix.dockerfile[0]}} @@ -62,7 +62,7 @@ jobs: ${{ env.tagged }} - name: Build & Deploy - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 if: github.event_name == 'push' with: file: ${{matrix.dockerfile[0]}} diff --git a/Dockerfile b/Dockerfile index 33eb595..0a6fd48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN apk update && \ RUN apk add --no-cache bash git openssh gcc squashfs-tools sudo libtool gawk cryptsetup tzdata bash glib-dev RUN apk add --no-cache linux-headers build-base openssl-dev util-linux util-linux-dev shadow-uidmap libseccomp-dev fuse3-dev -ENV SINGULARITY_VERSION=4.0.0 +ENV SINGULARITY_VERSION=4.0.1 LABEL Maintainer @vsoch RUN mkdir -p /usr/local/var/singularity/mnt && \ mkdir -p $GOPATH/src/github.com/sylabs && \ diff --git a/Dockerfile.arm b/Dockerfile.arm index 2bcf943..9eedc3f 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -20,7 +20,7 @@ FROM golang:1.21.3-bookworm ################################################################################ ENV DEBIAN_FRONTEND noninteractive -ENV SINGULARITY_VERSION=4.0.0 +ENV SINGULARITY_VERSION=4.0.1 LABEL Maintainer @vsoch RUN apt-get update && apt-get install -y \