From cec5cca8fa45b88423d316df39d231fd15570c6f Mon Sep 17 00:00:00 2001 From: pips Date: Wed, 30 Jul 2025 21:56:47 +0200 Subject: [PATCH 1/2] chore(license): update project name --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 69efc25..9b19e53 100644 --- a/LICENSE +++ b/LICENSE @@ -219,7 +219,7 @@ If you develop a new program, and you want it to be of the greatest possible use To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - golang-vendor-private + ci-plugins/golang-vendor-private Copyright (C) 2025 pips This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. From 503bbb8f89c1c910cb1f81c75139ff1067d14a67 Mon Sep 17 00:00:00 2001 From: pips Date: Wed, 30 Jul 2025 21:57:04 +0200 Subject: [PATCH 2/2] feat(build): build for supported golang versions --- .woodpecker/build.yaml | 7 ++++++- Dockerfile | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 35939a3..812d894 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -1,3 +1,8 @@ +matrix: + GO_VERSION: + - 1.24 + - 1.23 + when: - event: [push, manual] @@ -6,7 +11,7 @@ steps: image: woodpeckerci/plugin-kaniko settings: registry: ${CI_FORGE_URL##https://} - repo: ${CI_REPO_OWNER}/${CI_REPO_NAME} + repo: ${CI_REPO_OWNER}/${CI_REPO_NAME}:${GO_VERSION} username: from_secret: forge-username password: diff --git a/Dockerfile b/Dockerfile index 0c03a1a..f46f0ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24 +FROM golang:${GO_VERSION} COPY entrypoint.sh /entrypoint.sh