Skip to content

Commit

Permalink
Merge branch 'release/v9.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nhinze23 committed Sep 5, 2024
2 parents 3537e63 + 9f4260d commit ddc0d0e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v9.2.1](https://github.com/cloudogu/makefiles/releases/tag/v9.2.1) 2024-09-05
### Fixed
- Add missing yq dependency on docker-build target

## [v9.2.0](https://github.com/cloudogu/makefiles/releases/tag/v9.2.0) 2024-08-28
### Added
- Add make target `govulncheck` to scan go repositories for vulnerabilities using [govulncheck](https://pkg.go.dev/golang.org/x/vuln/cmd/govulncheck)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set these to the desired values
ARTIFACT_ID=makefiles
MAKEFILES_VERSION=9.2.0
MAKEFILES_VERSION=9.2.1
VERSION=${MAKEFILES_VERSION}

.DEFAULT_GOAL:=help
Expand Down
2 changes: 1 addition & 1 deletion build/make/k8s.mk
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ ${K8S_RESOURCE_TEMP_FOLDER}:
##@ K8s - Docker

.PHONY: docker-build
docker-build: check-docker-credentials check-k8s-image-env-var ## Builds the docker image of the K8s app.
docker-build: check-docker-credentials check-k8s-image-env-var ${BINARY_YQ} ## Builds the docker image of the K8s app.
@echo "Building docker image $(IMAGE)..."
@DOCKER_BUILDKIT=1 docker build . -t $(IMAGE)

Expand Down

0 comments on commit ddc0d0e

Please sign in to comment.