1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-18 06:59:33 +00:00

WIP: image workflow

Signed-off-by: Jason Hall <jason@chainguard.dev>
This commit is contained in:
Jason Hall 2023-06-22 20:13:52 -04:00
parent 8c0c13a582
commit 36810cf5ac
Failed to extract signature
12 changed files with 583 additions and 1 deletions

View file

@ -0,0 +1,19 @@
#!/usr/bin/env bash
# Copyright 2022 Chainguard, Inc.
# SPDX-License-Identifier: Apache-2.0
set -o errexit
set -o nounset
set -o pipefail
REPO_ROOT_DIR=$PWD/$(dirname "$0")/..
echo === Tidying up for Golang
go mod tidy -compat=1.17
echo === Generating for Golang
go generate ./...
# Make sure our dependencies are up-to-date
${REPO_ROOT_DIR}/hack/update-deps.sh