mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-13 14:34:06 -08:00
14 lines
390 B
YAML
14 lines
390 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json
|
|
name: 'Setup Go'
|
|
description: 'Install Go and override with the custom build'
|
|
branding:
|
|
icon: download
|
|
color: purple
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
|
|
with:
|
|
go-version: '1.22.3'
|
|
cache-dependency-path: src/go.sum
|