Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.git
.github
.vscode
config/
hack/
docs/
templates/
scripts/
**/.md
tilt-provider.json
test/
_artifacts
.tiltbuild
Makefile
*.md
.gitignore
.golangci.yml
cloudbuild.yaml
clusterctl-settings.json
*.example
OWNERS
OWNERS_ALIASES
PROJECT
SECURITY_CONTACTS
32 changes: 32 additions & 0 deletions .github/actions/setup-go/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: 'Setup Go'
description: 'Setup Go'
inputs:
version:
description: 'Go Version to setup'
required: true
default: "1.17"
runs:
using: "composite"
steps:
- uses: actions/setup-go@v2
with:
go-version: ${{ inputs.version }}
- id: go-cache-paths
shell: bash
run: |
echo "::set-output name=go-build::$(go env GOCACHE)"
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Go Mod Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mod-
- name: Go Build Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-build-
Loading