5 Commits

Author SHA1 Message Date
dad27cae64 Update golang Docker tag to v1.26
All checks were successful
Build and Push Docker Images / build (pull_request) Successful in 7m55s
2026-02-11 02:32:26 +00:00
69f2142631 Update WF to run on Gitea runners and add priority for docker tag
All checks were successful
Build and Push Docker Images / build (push) Successful in 8m41s
2026-02-10 21:43:44 +05:30
4cbad67510 Squashed commit of the following:
commit 89694467bb
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Feb 3 19:49:18 2026 +0000

    Update actions/checkout action to v6.0.2
2026-02-06 22:35:04 +05:30
da9d8d5fff Squashed commit of the following:
commit a83416eedc
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Feb 3 19:49:20 2026 +0000

    Update docker/login-action action to v3.7.0
2026-02-06 22:34:50 +05:30
52dd07bcef Squashed commit of the following:
commit 2168cf6b30
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Feb 3 19:49:24 2026 +0000

    Update docker/setup-buildx-action action to v3.12.0
2026-02-06 22:34:19 +05:30
2 changed files with 9 additions and 9 deletions

View File

@@ -6,12 +6,12 @@ on:
branches: [ main ] branches: [ main ]
paths: paths:
- 'build/**' - 'build/**'
- '.github/workflows/**' - '.gitea/workflows/**'
pull_request: pull_request:
branches: [ main ] branches: [ main ]
paths: paths:
- 'build/**' - 'build/**'
- '.github/workflows/**' - '.gitea/workflows/**'
jobs: jobs:
build: build:
@@ -20,7 +20,7 @@ jobs:
steps: steps:
- -
name: Checkout code name: Checkout code
uses: actions/checkout@v6.0.1 uses: actions/checkout@v6.0.2
- -
name: Read Version from file name: Read Version from file
id: version id: version
@@ -41,19 +41,19 @@ jobs:
uses: docker/setup-qemu-action@v3.7.0 uses: docker/setup-qemu-action@v3.7.0
- -
name: Set up Docker Buildx name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.11.1 uses: docker/setup-buildx-action@v3.12.0
with: with:
driver-opts: image=moby/buildkit:v0.23.2@sha256:ddd1ca44b21eda906e81ab14a3d467fa6c39cd73b9a39df1196210edcb8db59e driver-opts: image=moby/buildkit:v0.23.2@sha256:ddd1ca44b21eda906e81ab14a3d467fa6c39cd73b9a39df1196210edcb8db59e
- -
name: Login to GitHub Container Registry name: Login to GitHub Container Registry
uses: docker/login-action@v3.6.0 uses: docker/login-action@v3.7.0
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ vars.GH_USERNAME }} username: ${{ vars.GH_USERNAME }}
password: ${{ secrets.GH_TOKEN }} password: ${{ secrets.GH_TOKEN }}
- -
name: Login to Docker Hub name: Login to Docker Hub
uses: docker/login-action@v3.6.0 uses: docker/login-action@v3.7.0
with: with:
username: ${{ vars.DOCKERHUB_USERNAME }} username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -69,14 +69,14 @@ jobs:
type=sha,format=long,prefix=sha- type=sha,format=long,prefix=sha-
type=raw,value=${{ steps.version.outputs.major_version }} type=raw,value=${{ steps.version.outputs.major_version }}
type=raw,value=${{ steps.version.outputs.minor_version }} type=raw,value=${{ steps.version.outputs.minor_version }}
type=raw,value=${{ steps.version.outputs.version }} type=raw,value=${{ steps.version.outputs.version }},priority=1000
type=raw,value=latest type=raw,value=latest
- -
name: Build and push name: Build and push
uses: docker/build-push-action@v6.18.0 uses: docker/build-push-action@v6.18.0
with: with:
context: ./build context: ./build
push: ${{ github.event_name != 'pull_request' }} push: ${{ gitea.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64,linux/arm/v7 platforms: linux/amd64,linux/arm64,linux/arm/v7

View File

@@ -1,4 +1,4 @@
FROM golang:1.25-alpine AS builder FROM golang:1.26-alpine AS builder
WORKDIR /app WORKDIR /app