File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -33,25 +33,25 @@ jobs:
3333
3434 - name : Log in to Quay Container Registry
3535 if : github.event_name == 'push'
36- uses : docker/login-action@v1
36+ uses : docker/login-action@v3
3737 with :
3838 registry : quay.io
3939 username : ${{ secrets.DOCKER_USER }}
4040 password : ${{ secrets.DOCKER_PASS }}
4141
4242 - name : Set up QEMU
43- uses : docker/setup-qemu-action@v1
43+ uses : docker/setup-qemu-action@v3
4444
4545 - name : Set up Docker Buildx
46- uses : docker/setup-buildx-action@v1
46+ uses : docker/setup-buildx-action@v3
4747
4848 - name : Inspect Container Names
4949 run : |
5050 printf "Tagged: ${tagged}\n"
5151 printf "Container: ${container}\n"
5252
5353 - name : Build
54- uses : docker/build-push-action@v2
54+ uses : docker/build-push-action@v5
5555 if : github.event_name != 'push'
5656 with :
5757 file : ${{matrix.dockerfile[0]}}
6262 ${{ env.tagged }}
6363
6464 - name : Build & Deploy
65- uses : docker/build-push-action@v2
65+ uses : docker/build-push-action@v5
6666 if : github.event_name == 'push'
6767 with :
6868 file : ${{matrix.dockerfile[0]}}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN apk update && \
2626RUN apk add --no-cache bash git openssh gcc squashfs-tools sudo libtool gawk cryptsetup tzdata bash glib-dev
2727RUN apk add --no-cache linux-headers build-base openssl-dev util-linux util-linux-dev shadow-uidmap libseccomp-dev fuse3-dev
2828
29- ENV SINGULARITY_VERSION=4.0.0
29+ ENV SINGULARITY_VERSION=4.0.1
3030LABEL Maintainer @vsoch
3131RUN mkdir -p /usr/local/var/singularity/mnt && \
3232 mkdir -p $GOPATH/src/github.com/sylabs && \
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ FROM golang:1.21.3-bookworm
2020################################################################################
2121
2222ENV DEBIAN_FRONTEND noninteractive
23- ENV SINGULARITY_VERSION=4.0.0
23+ ENV SINGULARITY_VERSION=4.0.1
2424LABEL Maintainer @vsoch
2525
2626RUN apt-get update && apt-get install -y \
You can’t perform that action at this time.
0 commit comments