Skip to content

Commit 3ccd676

Browse files
committed
add v4.0.1-slim and update actions
Signed-off-by: vsoch <[email protected]>
1 parent 9fd1da9 commit 3ccd676

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build-containers.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build ${{ matrix.dockerfile[0] }}
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919

2020
- name: Set Container Tag
2121
run: |
@@ -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]}}
@@ -62,7 +62,7 @@ jobs:
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]}}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apk update && \
2626
RUN apk add --no-cache bash git openssh gcc squashfs-tools sudo libtool gawk cryptsetup glib-dev tzdata bash glib-dev
2727
RUN 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
3030
LABEL Maintainer @vsoch
3131
RUN mkdir -p /usr/local/var/singularity/mnt && \
3232
mkdir -p $GOPATH/src/github.com/sylabs && \

Dockerfile.arm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM golang:1.21.3-bookworm
2020
################################################################################
2121

2222
ENV DEBIAN_FRONTEND noninteractive
23-
ENV SINGULARITY_VERSION=4.0.0
23+
ENV SINGULARITY_VERSION=4.0.1
2424
LABEL Maintainer @vsoch
2525

2626
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)