diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 405da5d..4a1686e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 with: - node-version: '18.17.0' + node-version: '20.10.0' - name: Set up corepack run: corepack enable @@ -75,7 +75,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.20.6' + go-version: '1.20.12' cache: true - name: Test @@ -102,7 +102,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.20.6' + go-version: '1.20.12' cache: true - name: Run GoReleaser build @@ -146,7 +146,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.20.6' + go-version: '1.20.12' cache: true - name: Run GoReleaser build and publish tags diff --git a/Dockerfile b/Dockerfile index c68fd32..91ed9b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build web -FROM node:18.17.0-alpine3.18 AS web-builder +FROM node:20.10.0-alpine3.19 AS web-builder RUN corepack enable WORKDIR /web @@ -11,7 +11,7 @@ COPY web ./ RUN pnpm run build # build app -FROM golang:1.20-alpine3.18 AS app-builder +FROM golang:1.20-alpine3.19 AS app-builder ARG VERSION=dev ARG REVISION=dev diff --git a/ci.Dockerfile b/ci.Dockerfile index 5e52ca9..c51380d 100644 --- a/ci.Dockerfile +++ b/ci.Dockerfile @@ -1,5 +1,5 @@ # build app -FROM --platform=$BUILDPLATFORM golang:1.20-alpine3.18 AS app-builder +FROM --platform=$BUILDPLATFORM golang:1.20-alpine3.19 AS app-builder RUN apk add --no-cache git tzdata