Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit 9bd61de

Browse files
committed
fix config.go.versions retrieval
1 parent 3104214 commit 9bd61de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

templates/.github/workflows/go-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
submodules: recursive
1414
- uses: actions/setup-go@v2
1515
with:
16-
go-version: "${{ go.versions[-1] }}"
16+
go-version: ${{{ config.go.versions[-1] }}}
1717
- name: Run repo-specific setup
1818
uses: ./.github/actions/go-check-setup
1919
if: hashFiles('./.github/actions/go-check-setup') != ''

templates/.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
fail-fast: false
88
matrix:
99
os: [ "ubuntu", "windows", "macos" ]
10-
go: ${{ config.go.versions }}
10+
go: ${{{ config.go.versions }}}
1111
env:
1212
COVERAGES: ""
1313
runs-on: ${{ matrix.os }}-latest

templates/.github/workflows/release-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
release-check:
88
uses: protocol/.github/.github/workflows/release-check.yml@master
99
with:
10-
go-version: ${{ go.versions[-1] }}
10+
go-version: ${{{ config.go.versions[-1] }}}

0 commit comments

Comments
 (0)