File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 runs-on : ${{ matrix.os }}
1010 steps :
1111 - uses : actions/checkout@v3
12+ - id : goversion
13+ run : echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
1214 - uses : actions/setup-go@v3
1315 with :
14- go-version : " 1.17.13 "
16+ go-version : ${{ steps.goversion.outputs.goversion }}
1517 - run : |
1618 make gofail-enable
1719 make test-failpoint
Original file line number Diff line number Diff line change 1313 runs-on : ubuntu-latest
1414 steps :
1515 - uses : actions/checkout@v3
16+ - id : goversion
17+ run : echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
1618 - uses : actions/setup-go@v3
1719 with :
18- go-version : " 1.17.13 "
20+ go-version : ${{ steps.goversion.outputs.goversion }}
1921 - run : make fmt
2022 - env :
2123 TARGET : ${{ matrix.target }}
6466 runs-on : windows-latest
6567 steps :
6668 - uses : actions/checkout@v3
69+ - id : goversion
70+ run : echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
6771 - uses : actions/setup-go@v3
6872 with :
69- go-version : " 1.17.13 "
73+ go-version : ${{ steps.goversion.outputs.goversion }}
7074 - run : make fmt
7175 - env :
7276 TARGET : ${{ matrix.target }}
9296 runs-on : ${{ matrix.os }}
9397 steps :
9498 - uses : actions/checkout@v3
99+ - id : goversion
100+ run : echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
95101 - uses : actions/setup-go@v3
96102 with :
97- go-version : " 1.17.13 "
103+ go-version : ${{ steps.goversion.outputs.goversion }}
98104 - run : make coverage
99105
Original file line number Diff line number Diff line change 1+ 1.17.13
You can’t perform that action at this time.
0 commit comments