chore(build): update go and node (#1301)

* chore(build): sync go and node

* node20

* golang:1.20-alpine3.19

* 20.10.0-alpine3.19 golang:1.20-alpine3.19
This commit is contained in:
Kyle Sanderson 2023-12-16 11:52:24 -08:00 committed by GitHub
parent 3d9e3f1cd0
commit 95cd053db5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -26,7 +26,7 @@ jobs:
- name: Set up Node - name: Set up Node
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: '18.17.0' node-version: '20.10.0'
- name: Set up corepack - name: Set up corepack
run: corepack enable run: corepack enable
@ -75,7 +75,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.20.6' go-version: '1.20.12'
cache: true cache: true
- name: Test - name: Test
@ -102,7 +102,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.20.6' go-version: '1.20.12'
cache: true cache: true
- name: Run GoReleaser build - name: Run GoReleaser build
@ -146,7 +146,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.20.6' go-version: '1.20.12'
cache: true cache: true
- name: Run GoReleaser build and publish tags - name: Run GoReleaser build and publish tags

View file

@ -1,5 +1,5 @@
# build web # 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 RUN corepack enable
WORKDIR /web WORKDIR /web
@ -11,7 +11,7 @@ COPY web ./
RUN pnpm run build RUN pnpm run build
# build app # build app
FROM golang:1.20-alpine3.18 AS app-builder FROM golang:1.20-alpine3.19 AS app-builder
ARG VERSION=dev ARG VERSION=dev
ARG REVISION=dev ARG REVISION=dev

View file

@ -1,5 +1,5 @@
# build app # 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 RUN apk add --no-cache git tzdata