0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-05-14 03:12:18 +00:00
crazy-max_diun/vendor/github.com/crazy-max/gohealthchecks/docker-bake.hcl
dependabot[bot] a12e347d9b
chore(deps): bump github.com/crazy-max/gohealthchecks
Bumps [github.com/crazy-max/gohealthchecks](https://github.com/crazy-max/gohealthchecks) from 0.4.1 to 0.5.0.
- [Release notes](https://github.com/crazy-max/gohealthchecks/releases)
- [Commits](https://github.com/crazy-max/gohealthchecks/compare/v0.4.1...v0.5.0)

---
updated-dependencies:
- dependency-name: github.com/crazy-max/gohealthchecks
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-23 07:25:06 +00:00

24 lines
320 B
HCL

variable "GO_VERSION" {
default = null
}
variable "DESTDIR" {
default = "./bin"
}
group "default" {
targets = ["test"]
}
target "test" {
target = "test-coverage"
output = ["${DESTDIR}/coverage"]
args = {
GO_VERSION = GO_VERSION
}
}
target "lint" {
target = "lint"
output = ["type=cacheonly"]
}