diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index a15f2e89..339bf1a2 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -14,8 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: nschloe/action-cached-lfs-checkout@v1 - - name: Setup Python 3 + uses: actions/checkout@v3 + with: + lfs: true + - name: Setup Python 3.9 uses: actions/setup-python@v3 with: python-version: 3.9 @@ -32,6 +34,12 @@ jobs: container: cahirwpz/demoscene:latest steps: - name: Checkout code - uses: nschloe/action-cached-lfs-checkout@v1 + uses: actions/checkout@v3 + with: + lfs: true + - name: Setup GoLang + uses: actions/setup-go@v4 + with: + go-version: '>=1.19.0' - name: Build everything run: make diff --git a/build/go.mk b/build/go.mk index 2af5b7b6..f5f89c9b 100644 --- a/build/go.mk +++ b/build/go.mk @@ -1,5 +1,5 @@ all: - go build + go build -buildvcs=false windows: GOOS=windows GOARCH=amd64 go build