1 Commits

Author SHA1 Message Date
046ed4b749 chore(deps): update ghcr.io/renovatebot/renovate docker tag to v40
All checks were successful
Go / build (pull_request) Successful in 15s
SonarQube Scan / Build and analyze (pull_request) Successful in 38s
2025-05-29 00:02:05 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.82.3 container: ghcr.io/renovatebot/renovate:40.34.2
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: renovate - run: renovate

View File

@@ -1,5 +1,5 @@
# Use the official Golang image for building # Use the official Golang image for building
FROM golang:1.25 AS builder FROM golang:1.24 AS builder
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app
# Copy Go modules and dependencies # Copy Go modules and dependencies
@@ -11,7 +11,7 @@ COPY . .
RUN go build -o gosearch . RUN go build -o gosearch .
# Use a minimal base image for final deployment # Use a minimal base image for final deployment
FROM alpine:3.22 FROM alpine:3.21
# Set working directory in the container # Set working directory in the container
WORKDIR / WORKDIR /
# Copy the built binary from the builder stage # Copy the built binary from the builder stage