Merge pull request 'Release v1.0.5' (#67) from dev into master
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 25s
Build and Push Docker Image / deploy-on-green (push) Successful in 7s

Reviewed-on: #67
This commit was merged in pull request #67.
This commit is contained in:
2026-04-10 12:14:44 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -83,7 +83,7 @@ jobs:
fi
exit 0
- name: Push changes
uses: ad-m/github-push-action@v1.0.0
uses: ad-m/github-push-action@v1.1.0
with:
github_token: ${{ secrets.ACTIONS_TOKEN }}
repository: infrastructure/core-apps

View File

@@ -38,7 +38,7 @@ RUN case "$TARGETARCH" in \
################################################################################
# FFmpeg builder stage
FROM debian:13-slim@sha256:26f98ccd92fd0a44d6928ce8ff8f4921b4d2f535bfa07555ee5d18f61429cf0c AS ffmpeg-builder
FROM debian:13-slim@sha256:4ffb3a1511099754cddc70eb1b12e50ffdb67619aa0ab6c13fcd800a78ef7c7a AS ffmpeg-builder
RUN apt-get update && \
apt-get install -y --no-install-recommends ffmpeg
COPY --from=yt-dlp-builder /rootfs/bin/yt-dlp /yt-dlp
@@ -54,7 +54,7 @@ RUN mkdir -p /rootfs/bin && \
################################################################################
# App builder stage
FROM golang:1.26.1-trixie@sha256:96b28783b99bcd265fbfe0b36a3ac6462416ce6bf1feac85d4c4ff533cbaa473 AS app-builder
FROM golang:1.26.2-trixie@sha256:da3943074756e8d6f109ce7a84be16e98bffa39e9d369a0447f016b56db84e8f AS app-builder
COPY app/ /opt/app
WORKDIR /opt/app