2 Commits

Author SHA1 Message Date
baf8fc6270 Update docker/setup-buildx-action action to v4
All checks were successful
Deploy and Push Docker Image / BuildAndPush (push) Successful in 2m23s
2026-03-05 08:05:35 +00:00
5a52aacde1 Update golang Docker tag to v1.26
All checks were successful
Deploy and Push Docker Image / BuildAndPush (push) Successful in 53s
2026-02-12 07:53:04 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Check out repository code
uses: actions/checkout@v6
- name: Login to Docker Registry

View File

@@ -1,5 +1,5 @@
ARG BUILDPLATFORM
FROM --platform=$BUILDPLATFORM golang:1.25-alpine AS builder
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder
# Set working directory
WORKDIR /app