diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc9b7f1..ed4f9de 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ jobs: needs: semantic-release runs-on: ubuntu-latest container: - image: golang:1.20 + image: golang:1.22 steps: - uses: actions/checkout@v2 - run: make build @@ -17,7 +17,7 @@ jobs: env: VERSION: v${{ needs.semantic-release.outputs.release-version }} container: - image: golang:1.20 + image: golang:1.22 steps: - uses: actions/checkout@v2 - run: make release diff --git a/go.mod b/go.mod index 6dd16c2..016f28f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/flanksource/gitlab-multirepo-deployer -go 1.20 +go 1.22 require ( github.com/spf13/cobra v1.8.1