mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-16 20:51:47 +00:00
Properly setup Go version in update workflow
To prevent false `go.mod` modifications. Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
f54770c21a
commit
54bb4b2efd
1 changed files with 4 additions and 1 deletions
5
.github/workflows/update.yaml
vendored
5
.github/workflows/update.yaml
vendored
|
|
@ -13,7 +13,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: 1.16.x
|
||||||
- name: Update component versions
|
- name: Update component versions
|
||||||
id: update
|
id: update
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue