8 Commits

Author SHA1 Message Date
RenovateBot bad0c5ab2a Update actions/checkout action to v7
Deploy and Push Docker Image / BuildAndPush (push) Successful in 1m5s
2026-06-19 02:15:23 +00:00
RenovateBot 5a52aacde1 Update golang Docker tag to v1.26
Deploy and Push Docker Image / BuildAndPush (push) Successful in 53s
2026-02-12 07:53:04 +00:00
ace966 f22dcf8724 Merge pull request 'Update actions/checkout action to v6' (#5) from renovate/actions-checkout-6.x into main
Deploy and Push Docker Image / BuildAndPush (push) Successful in 49s
Reviewed-on: #5
2026-02-12 07:16:53 +00:00
RenovateBot 1d9dd73787 Update actions/checkout action to v6
Deploy and Push Docker Image / BuildAndPush (push) Successful in 52s
2025-11-20 16:33:50 +00:00
ace966 1b203daac3 Merge pull request 'Update actions/checkout action to v5' (#3) from renovate/actions-checkout-5.x into main
Deploy and Push Docker Image / BuildAndPush (push) Successful in 52s
Reviewed-on: #3
2025-11-20 13:52:38 +00:00
ace966 aeb8637de6 Merge pull request 'Update docker/build-push-action action to v6' (#4) from renovate/docker-build-push-action-6.x into main
Deploy and Push Docker Image / BuildAndPush (push) Has been cancelled
Reviewed-on: #4
2025-11-20 13:52:33 +00:00
RenovateBot 00d4bd5a6c Update docker/build-push-action action to v6
Deploy and Push Docker Image / BuildAndPush (push) Successful in 2m14s
2025-11-20 13:41:22 +00:00
RenovateBot 2268f301a8 Update actions/checkout action to v5
Deploy and Push Docker Image / BuildAndPush (push) Successful in 52s
2025-11-20 13:41:20 +00:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v7
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
@@ -17,7 +17,7 @@ jobs:
username: ${{ gitea.actor }}
password: ${{ secrets.REGISTRY_TOKEN}}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: build/Dockerfile
+1 -1
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