diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 83cd4cb8..cae38ffa 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,16 +14,16 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: 'stable' + check-latest: true - name: Build run: go build -v ./... - name: Test - - run: git submodule update --init --recursive && go test -v ./... + run: go test -v ./...