Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Fix GitHub actions #1190

Merged
merged 2 commits into from
Nov 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v2.1.2
uses: actions/setup-go@v2
with:
go-version: '1.15.2'
go-version: '1.15.4'
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build: update-assets build-slim
.PHONY: build-in-docker
build-in-docker:
# increase ulimit to workaround https://github.com/golang/go/issues/37436
docker run --ulimit memlock=1024000 --rm -ti -v $(shell pwd):/usr/src/lokomotive -w /usr/src/lokomotive golang:1.15.3 sh -c "make"
docker run --ulimit memlock=1024000 --rm -ti -v $(shell pwd):/usr/src/lokomotive -w /usr/src/lokomotive golang:1.15.4 sh -c "make"

.PHONY: build-test
build-test:
Expand Down