diff --git a/.github/workflows/kuttl-int-tests.yaml b/.github/workflows/kuttl-int-tests.yaml index 9a06801..97e35ee 100644 --- a/.github/workflows/kuttl-int-tests.yaml +++ b/.github/workflows/kuttl-int-tests.yaml @@ -16,11 +16,12 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/setup-go@v2.1.4 + - uses: actions/setup-go@v5 with: - go-version: 1.21 + go-version-file: go.mod + check-latest: true - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v4 - name: Install dependencies run: | @@ -30,4 +31,4 @@ jobs: sudo chmod +x kind - name: "Run integration tests" - run: make test-e2e \ No newline at end of file + run: make test-e2e diff --git a/Dockerfile b/Dockerfile index 912e7c1..54634ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM docker.io/golang:1.21 as builder +FROM docker.io/golang:1.22 as builder ARG TARGETOS ARG TARGETARCH diff --git a/go.mod b/go.mod index 15f2aec..6d3c29d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/confidential-containers/trustee-operator -go 1.21 +go 1.22.0 require ( github.com/go-logr/logr v1.4.1