giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
25 lines
607 B
YAML
25 lines
607 B
YAML
name: go-setup
|
|
description: Set up go and restore caches
|
|
|
|
inputs:
|
|
cache:
|
|
description: Restore go caches
|
|
default: "true"
|
|
lint-cache:
|
|
description: Also restore the golangci-lint cache
|
|
default: "false"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: ./.github/actions/free-disk-space
|
|
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
|
|
with:
|
|
go-version-file: go.mod
|
|
check-latest: true
|
|
cache: false
|
|
- if: ${{ inputs.cache == 'true' }}
|
|
uses: ./.github/actions/go-cache
|
|
with:
|
|
lint-cache: ${{ inputs.lint-cache }}
|