diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ef1b63b..443c17f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.22' + go-version: '1.23' - name: Build run: make build diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 324858a..277c63e 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -20,14 +20,14 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.22' + go-version: '1.23' cache: false - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: v1.55 + version: v1.60.1 # Optional: working directory, useful for monorepos # working-directory: somedir diff --git a/go.mod b/go.mod index f593b4c..bf92cc1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/crossplane-contrib/xp-testing -go 1.22 +go 1.23 require ( github.com/google/go-containerregistry v0.19.0