From 28f7498f4983c955c1765334c6268db8c8903416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Thu, 12 Jun 2025 11:35:04 +0200 Subject: [PATCH 1/2] chore: fix lint in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 14433d5adc..1b2c2056a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.24-alpine3.21 AS builder -ENV BUILD_IN_DOCKER true +ENV BUILD_IN_DOCKER=true ARG VERSION # ca-certificates is needed to add the certificates on the next image From c2ddee086b426e0bd576de67c9927d2206941a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 13 Jun 2025 14:35:14 +0200 Subject: [PATCH 2/2] chore: lint dockerfile and renaming --- .github/workflows/{golangci-lint.yml => lint.yml} | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) rename .github/workflows/{golangci-lint.yml => lint.yml} (66%) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/lint.yml similarity index 66% rename from .github/workflows/golangci-lint.yml rename to .github/workflows/lint.yml index 2fd3650d7a..16cdf03358 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/lint.yml @@ -1,10 +1,19 @@ -name: golangci-lint +name: Lint on: pull_request: merge_group: + jobs: + dockerlint: + name: dockerfile-lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: dockerfile-lint + run: docker build --check . + golangci: - name: lint + name: golangci-lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4