diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 9a7cb55..bbf3d1c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -97,7 +97,7 @@ jobs: - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . build-args: VERSION="99.99.99" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 23fd84f..5f50e5c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -122,7 +122,7 @@ jobs: check-latest: true - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v3.2.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/Dockerfile b/Dockerfile index 05a959e..37b0e98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ # Copyright (c) karl-cardenas-coding # SPDX-License-Identifier: MIT -FROM golang:1.23.0-alpine3.20 as builder +FROM golang:1.23.0-alpine3.20 AS builder LABEL org.opencontainers.image.source="http://github.com/karl-cardenas-coding/go-lambda-cleanup" -LABEL org.opencontainers.image.description "A solution for removing previous versions of AWS Lambdas" +LABEL org.opencontainers.image.description="A solution for removing previous versions of AWS Lambdas" ARG VERSION