mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
# This action targets the project default version of setup-go. For
|
|
# workers with old NodeJS incompabible with newer versions of
|
|
# setup-go, try setup-go-for-project-v3.
|
|
#
|
|
# Since github actions do not support dynamically configuring the
|
|
# versions in a uses statement (e.g. `actions/setup-go@${{ var }}`) it
|
|
# is necessary to define an action per version rather than one action
|
|
# that can be parameterized.
|
|
#
|
|
# Must be run after actions/checkout to ensure go.mod is available to
|
|
# source the project's go version from.
|
|
|
|
name: 'Install Go toolchain with project defaults'
|
|
description: 'Install a go toolchain with project defaults'
|
|
|
|
inputs:
|
|
github-token:
|
|
description: 'GitHub token for private repo access'
|
|
required: false
|
|
default: ''
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Set the project Go version in the environment
|
|
uses: ./.github/actions/set-go-version-in-env
|
|
- name: Set GOPRIVATE and GONOSUMDB for luxfi packages
|
|
shell: bash
|
|
run: |
|
|
echo "GOPRIVATE=github.com/luxfi/*" >> $GITHUB_ENV
|
|
echo "GONOSUMDB=github.com/luxfi/*" >> $GITHUB_ENV
|
|
- name: Configure git for private repo access
|
|
if: inputs.github-token != ''
|
|
shell: bash
|
|
run: |
|
|
git config --global url."https://x-access-token:${{ inputs.github-token }}@github.com/".insteadOf "https://github.com/"
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '${{ env.GO_VERSION }}'
|
|
check-latest: true
|