diff --git a/.github/workflows/create-docker-image.yml b/.github/workflows/create-docker-image.yml index 5a97daf..437e688 100644 --- a/.github/workflows/create-docker-image.yml +++ b/.github/workflows/create-docker-image.yml @@ -12,7 +12,7 @@ env: jobs: build-image: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 @@ -39,7 +39,7 @@ jobs: username: ${{ secrets.CR_USER_NAME }} password: ${{ secrets.CR_PAT }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile diff --git a/Dockerfile b/Dockerfile index 9c6e35c..6e7a2a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM --platform=$TARGETPLATFORM golang:1.22.5-alpine3.20 as builder +FROM --platform=$TARGETPLATFORM golang:1.23.1-alpine3.20 as builder -RUN GOOSE_VERSION=v3.21.1 && \ +RUN GOOSE_VERSION=v3.22.1 && \ go install github.com/pressly/goose/v3/cmd/goose@${GOOSE_VERSION} FROM --platform=$TARGETPLATFORM alpine:3.20 as runner