mirror of
https://github.com/ivuorinen/gibidify.git
synced 2026-01-26 11:34:03 +00:00
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
16 lines
395 B
YAML
16 lines
395 B
YAML
name: "Setup Go with Runner Hardening"
|
|
description: "Reusable action to set up Go"
|
|
inputs:
|
|
token:
|
|
description: "GitHub token for checkout (optional)"
|
|
required: false
|
|
default: ""
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
|
|
with:
|
|
go-version-file: "go.mod"
|
|
cache: true
|