workflows: use proper make dep for Docker image workflow
`go mod download` changes go.sum making our images "-dirty".
This commit is contained in:
parent
37fa2c6757
commit
7a7d27e894
1 changed files with 1 additions and 1 deletions
2
.github/workflows/publish_to_dockerhub.yml
vendored
2
.github/workflows/publish_to_dockerhub.yml
vendored
|
@ -56,7 +56,7 @@ jobs:
|
|||
key: deps-${{ hashFiles('go.sum') }}
|
||||
|
||||
- name: Update Go modules
|
||||
run: go mod download -json
|
||||
run: make dep
|
||||
|
||||
- name: Build image
|
||||
run: make image
|
||||
|
|
Loading…
Reference in a new issue