diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29aa1d552..98742ab22 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,7 +87,7 @@ jobs: find . -type f - uses: actions/setup-go@v5 with: - go-version: 1.21 + go-version: 1.22 cache: true - uses: sigstore/cosign-installer@v3.1.2 # installs cosign - uses: anchore/sbom-action/download-syft@v0.14.3 # installs syft diff --git a/Dockerfile b/Dockerfile index 8e02f70aa..63cf950a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Build stage will be used: # - for building the application for production # - as target for development (see devspace.yaml) -FROM golang:1.21.3-alpine3.18 as builder +FROM golang:1.22.1-alpine3.19 as builder # Create project directory (workdir) WORKDIR /app