Compare commits

...

2 Commits

Author SHA1 Message Date
2fec206933
chore(deps): update container images
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-04-01 19:23:33 +00:00
d4e4ab9c59
fix(Makefile): make FQIN configurable
All checks were successful
continuous-integration/drone/push Build is passing
2025-04-01 20:45:49 +02:00
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ steps:
- name: markdown lint - name: markdown lint
commands: commands:
- markdownlint *.md - markdownlint *.md
image: git.cryptic.systems/volker.raschek/markdownlint:0.43.0 image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
resources: resources:
limits: limits:
cpu: 150 cpu: 150

View File

@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.24.1-alpine AS build FROM docker.io/library/golang:1.24.2-alpine AS build
ARG GOSEC_VERSION ARG GOSEC_VERSION

View File

@ -9,8 +9,8 @@ CONTAINER_RUNTIME?=$(shell which podman)
# GOSEC_IMAGE_REGISTRY_NAME # GOSEC_IMAGE_REGISTRY_NAME
# Defines the name of the new container to be built using several variables. # Defines the name of the new container to be built using several variables.
GOSEC_IMAGE_REGISTRY_NAME:=git.cryptic.systems GOSEC_IMAGE_REGISTRY_NAME?=git.cryptic.systems
GOSEC_IMAGE_REGISTRY_USER:=volker.raschek GOSEC_IMAGE_REGISTRY_USER?=volker.raschek
GOSEC_IMAGE_NAMESPACE?=${GOSEC_IMAGE_REGISTRY_USER} GOSEC_IMAGE_NAMESPACE?=${GOSEC_IMAGE_REGISTRY_USER}
GOSEC_IMAGE_NAME:=gosec GOSEC_IMAGE_NAME:=gosec