diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9a2a11de..ef4ba7c1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,10 +19,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup Go - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - name: Docker meta id: meta uses: docker/metadata-action@v4 diff --git a/Dockerfile b/Dockerfile index 57ea5087..2e1b7b0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:22.10 AS user # Create a nonroot user for final image RUN useradd -u 10001 nonroot -FROM golang:1.22-alpine3.19 AS builder +FROM golang:1.23-alpine3.19 AS builder WORKDIR /workspace @@ -31,7 +31,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \ -X "github.com/pluralsh/plural-cli/pkg/common.Date=${APP_DATE}"' \ -o plural ./cmd/plural -FROM golang:1.23.3-alpine3.20 AS final +FROM golang:1.23.4-alpine3.20 AS final WORKDIR /