diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c4f05a..477fa07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-go@v3 with: - go-version: '1.18.3' + go-version: '1.19.3' - name: Ensure linux agent compiles run: | @@ -40,10 +40,3 @@ jobs: for i in ${ARCHS}; do env CGO_ENABLED=0 GOOS=darwin GOARCH=${i} go build -ldflags "-s -w" done - - - name: Ensure freebsd agent compiles - run: | - ARCHS='amd64 386 arm64 arm' - for i in ${ARCHS}; do - env CGO_ENABLED=0 GOOS=freebsd GOARCH=${i} go build -ldflags "-s -w" - done