From b324007db2081faa61b337906d243d34c067f94f Mon Sep 17 00:00:00 2001 From: butschster Date: Tue, 31 Mar 2026 22:21:12 +0400 Subject: [PATCH] chore: bump frontend version to 1.31.0 --- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index feeb65d..e2d5b0f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ permissions: packages: write env: - FRONTEND_VERSION: "1.30.0" + FRONTEND_VERSION: "1.31.0" PHP_VERSION: "8.4.19" jobs: diff --git a/Dockerfile b/Dockerfile index 9eb161c..602f9ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN ARCH=$(case ${TARGETARCH} in amd64) echo "x86_64";; arm64) echo "aarch64";; # Stage 2: Download frontend FROM alpine:3.20 AS frontend -ARG FRONTEND_VERSION=1.29.1 +ARG FRONTEND_VERSION=1.31.0 RUN apk add --no-cache curl unzip \ && mkdir -p /frontend \ && curl -sL "https://github.com/buggregator/frontend/releases/download/${FRONTEND_VERSION}/frontend-${FRONTEND_VERSION}.zip" -o /tmp/fe.zip \ diff --git a/Makefile b/Makefile index 6bda3e6..b7bb382 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -FRONTEND_VERSION ?= 1.29.1 +FRONTEND_VERSION ?= 1.31.0 FRONTEND_URL = https://github.com/buggregator/frontend/releases/download/$(FRONTEND_VERSION)/frontend-$(FRONTEND_VERSION).zip FRONTEND_DIR = internal/frontend/dist BINARY = buggregator