Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.9.0 #1263

Merged
merged 12 commits into from
Nov 16, 2023
4 changes: 2 additions & 2 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
tag: ${{ steps.get_version.outputs.TAG }}
- uses: actions/setup-node@v2
with:
node-version: '16.5'
node-version: '16.20'
- uses: actions/setup-go@v2
with:
go-version: '1.19.x' # The Go version to download (if necessary) and use.
go-version: '1.21.x' # The Go version to download (if necessary) and use.
- name: Make Build
id: make_build
env:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM redis:6.2-bullseye as redis

FROM node:16.17.1-bullseye-slim as ui-build
FROM node:16.20-bullseye-slim as ui-build
ARG TARGETARCH
ARG NPM_REGISTRY="https://registry.npmmirror.com"
ENV NPM_REGISTY=$NPM_REGISTRY
Expand All @@ -18,7 +18,7 @@ ADD ui .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn,sharing=locked,id=koko \
yarn build

FROM golang:1.19-bullseye as stage-build
FROM golang:1.21-bullseye as stage-build
LABEL stage=stage-build
ARG TARGETARCH

Expand Down
Loading