diff --git a/.dockerignore b/.dockerignore index 9d01186..eff970b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2023-07-03T16:28:38Z by kres latest. +# Generated on 2024-07-25T21:33:47Z by kres faf91e3. * !cmd @@ -8,5 +8,6 @@ !go.mod !go.sum !.golangci.yml +!CHANGELOG.md !README.md !.markdownlint.json diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d7d8565..3821ed7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-06-19T23:41:58Z by kres 4c9f215. +# Generated on 2024-07-25T21:33:47Z by kres faf91e3. name: default concurrency: @@ -101,14 +101,16 @@ jobs: - name: push-kube-service-exposer if: github.event_name != 'pull_request' env: + PLATFORM: linux/amd64,linux/arm64 PUSH: "true" run: | make image-kube-service-exposer - name: Generate Checksums if: startsWith(github.ref, 'refs/tags/') run: | - sha256sum _out/kube-service-exposer-* > _out/sha256sum.txt - sha512sum _out/kube-service-exposer-* > _out/sha512sum.txt + cd _out + sha256sum kube-service-exposer-* > sha256sum.txt + sha512sum kube-service-exposer-* > sha512sum.txt - name: release-notes if: startsWith(github.ref, 'refs/tags/') run: | diff --git a/.kres.yaml b/.kres.yaml index d01b701..34c1972 100644 --- a/.kres.yaml +++ b/.kres.yaml @@ -3,7 +3,7 @@ kind: common.Image name: image-kube-service-exposer spec: pushLatest: false - droneExtraEnvironment: + extraEnvironment: PLATFORM: linux/amd64,linux/arm64 --- kind: golang.Build @@ -24,4 +24,4 @@ kind: common.Release name: release spec: artifacts: - - kube-service-exposer-* \ No newline at end of file + - kube-service-exposer-* diff --git a/Dockerfile b/Dockerfile index f5973b7..ea9114e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -# syntax = docker/dockerfile-upstream:1.8.0-labs +# syntax = docker/dockerfile-upstream:1.9.0-labs # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-06-19T23:41:58Z by kres 4c9f215. +# Generated on 2024-07-25T21:33:47Z by kres faf91e3. ARG TOOLCHAIN @@ -11,10 +11,11 @@ FROM ghcr.io/siderolabs/ca-certificates:v1.7.0 AS image-ca-certificates FROM ghcr.io/siderolabs/fhs:v1.7.0 AS image-fhs # runs markdownlint -FROM docker.io/oven/bun:1.1.13-alpine AS lint-markdown +FROM docker.io/oven/bun:1.1.20-alpine AS lint-markdown WORKDIR /src RUN bun i markdownlint-cli@0.41.0 sentences-per-line@0.2.1 COPY .markdownlint.json . +COPY ./CHANGELOG.md ./CHANGELOG.md COPY ./README.md ./README.md RUN bunx markdownlint --ignore "CHANGELOG.md" --ignore "**/node_modules/**" --ignore '**/hack/chglog/**' --rules node_modules/sentences-per-line/index.js . diff --git a/Makefile b/Makefile index a8132da..428ef20 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-06-19T23:41:58Z by kres 4c9f215. +# Generated on 2024-07-25T21:33:47Z by kres faf91e3. # common variables @@ -21,11 +21,11 @@ PROTOBUF_GO_VERSION ?= 1.34.2 GRPC_GO_VERSION ?= 1.4.0 GRPC_GATEWAY_VERSION ?= 2.20.0 VTPROTOBUF_VERSION ?= 0.6.0 -GOIMPORTS_VERSION ?= 0.22.0 +GOIMPORTS_VERSION ?= 0.23.0 DEEPCOPY_VERSION ?= v0.5.6 GOLANGCILINT_VERSION ?= v1.59.1 GOFUMPT_VERSION ?= v0.6.0 -GO_VERSION ?= 1.22.4 +GO_VERSION ?= 1.22.5 GO_BUILDFLAGS ?= GO_LDFLAGS ?= CGO_ENABLED ?= 0