diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eedde79..3938bb6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,9 +32,9 @@ jobs: uses: actions/checkout@v2 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: 1.18 + go-version: '>=1.19.0' # Cache go build cache, used to speedup go test - name: Go Build Cache @@ -54,4 +54,4 @@ jobs: run: go build -v ./... - name: Test - run: go test -v ./... \ No newline at end of file + run: go test -v ./... diff --git a/go.mod b/go.mod index e78874a..ad6e744 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/maxlaverse/soft-pod-memory-evicter -go 1.18 +go 1.20 require ( github.com/stretchr/testify v1.8.2