diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 928c6088e..baeffc38d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -8,12 +8,12 @@ "runs-on": "ubuntu-latest", steps: [ { - name: "Set up Go 1.16", - uses: "actions/setup-go@v1", - "with": {"go-version": 1.16}, + name: "Set up Go 1.21", + uses: "actions/setup-go@v5", + "with": {"go-version": 1.21}, id: "go", }, - {name: "Check out code into the Go module directory", uses: "actions/checkout@v1"}, + {name: "Check out code into the Go module directory", uses: "actions/checkout@v4"}, {name: "Tests and lints", run: "make check"}, ], },