16 Commits

Author SHA1 Message Date
25eafe3959 Merge pull request 'chore(deps): update golang:1.26.1-trixie docker digest to e3474b9' (#63) from renovate/golang-1.26.1-trixie into dev
Reviewed-on: #63
2026-04-07 15:22:57 +00:00
a250bb7c9b Merge pull request 'chore(deps): update debian:13-slim docker digest to 4ffb3a1' (#62) from renovate/debian-13-slim into dev
Reviewed-on: #62
2026-04-07 15:22:47 +00:00
8768ea181c chore(deps): update golang:1.26.1-trixie docker digest to e3474b9
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 5m41s
2026-04-07 08:02:10 +00:00
7e0fd89e11 chore(deps): update debian:13-slim docker digest to 4ffb3a1
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 3m38s
2026-04-07 03:01:26 +00:00
445e10fa16 Merge pull request 'chore(deps): update golang:1.26.1-trixie docker digest to ce3f1c8' (#61) from renovate/golang-1.26.1-trixie into dev
Reviewed-on: #61
2026-03-21 15:37:35 +00:00
0b621acdfb chore(deps): update golang:1.26.1-trixie docker digest to ce3f1c8
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 15s
2026-03-21 08:01:04 +00:00
bdfd612fa0 Merge pull request 'chore(deps): update module github.com/lrstanley/go-ytdlp to v1.3.5' (#59) from renovate/github.com-lrstanley-go-ytdlp-1.x into dev
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 36s
Reviewed-on: #59
2026-03-18 01:54:56 +00:00
de6e50179a Merge pull request 'chore(deps): update dependency yt-dlp/yt-dlp to v2026.03.17' (#58) from renovate/yt-dlp-yt-dlp-2026.x into dev
Reviewed-on: #58
2026-03-18 01:54:37 +00:00
38691be66b chore(deps): update module github.com/lrstanley/go-ytdlp to v1.3.5
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 4m11s
2026-03-18 01:01:26 +00:00
46bbecb280 chore(deps): update dependency yt-dlp/yt-dlp to v2026.03.17
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 40s
2026-03-18 00:01:37 +00:00
772993a596 Merge pull request 'chore(deps): update golang:1.26.1-trixie docker digest to 96b2878' (#57) from renovate/golang-1.26.1-trixie into dev
Reviewed-on: #57
2026-03-17 17:39:14 +00:00
f809b08c37 chore(deps): update golang:1.26.1-trixie docker digest to 96b2878
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 6m56s
2026-03-17 11:02:10 +00:00
4f3b30885e Merge pull request 'chore(deps): update debian:13-slim docker digest to 26f98cc' (#55) from renovate/debian-13-slim into dev
Reviewed-on: #55
2026-03-17 03:34:11 +00:00
6c0316ac28 Merge pull request 'chore(deps): update golang:1.26.1-trixie docker digest to 9c51d8b' (#56) from renovate/golang-1.26.1-trixie into dev
Reviewed-on: #56
2026-03-17 03:33:57 +00:00
52cc00190b chore(deps): update golang:1.26.1-trixie docker digest to 9c51d8b
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 6m58s
2026-03-17 02:01:29 +00:00
a7765f90d9 chore(deps): update debian:13-slim docker digest to 26f98cc
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 3m52s
2026-03-17 00:01:49 +00:00
3 changed files with 6 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
######################################## ########################################
# Versions # Versions
ARG YT_DLP_VERSION="2026.03.13" ARG YT_DLP_VERSION="2026.03.17"
################################################################################ ################################################################################
# Deno builder stage # Deno builder stage
@@ -38,7 +38,7 @@ RUN case "$TARGETARCH" in \
################################################################################ ################################################################################
# FFmpeg builder stage # FFmpeg builder stage
FROM debian:13-slim@sha256:1d3c811171a08a5adaa4a163fbafd96b61b87aa871bbc7aa15431ac275d3d430 AS ffmpeg-builder FROM debian:13-slim@sha256:4ffb3a1511099754cddc70eb1b12e50ffdb67619aa0ab6c13fcd800a78ef7c7a AS ffmpeg-builder
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends ffmpeg apt-get install -y --no-install-recommends ffmpeg
COPY --from=yt-dlp-builder /rootfs/bin/yt-dlp /yt-dlp COPY --from=yt-dlp-builder /rootfs/bin/yt-dlp /yt-dlp
@@ -54,7 +54,7 @@ RUN mkdir -p /rootfs/bin && \
################################################################################ ################################################################################
# App builder stage # App builder stage
FROM golang:1.26.1-trixie@sha256:ab8c4944b04c6f97c2b5bffce471b7f3d55f2228badc55eae6cce87596d5710b AS app-builder FROM golang:1.26.1-trixie@sha256:e3474b933b6d2ba307819482c2d7faef57bbdc3beda1f5caf3e8ed51b3177844 AS app-builder
COPY app/ /opt/app COPY app/ /opt/app
WORKDIR /opt/app WORKDIR /opt/app

View File

@@ -4,7 +4,7 @@ go 1.25.2
require ( require (
github.com/bwmarrin/discordgo v0.29.0 github.com/bwmarrin/discordgo v0.29.0
github.com/lrstanley/go-ytdlp v1.3.4 github.com/lrstanley/go-ytdlp v1.3.5
) )
require ( require (

View File

@@ -18,6 +18,8 @@ github.com/lrstanley/go-ytdlp v1.3.3 h1:Y9kJcdTwskPWDiwONMIl501Dhi+OrTF7HHY6J6+L
github.com/lrstanley/go-ytdlp v1.3.3/go.mod h1:VgjnTrvkTf+23JuySjyPq1iQ8ijSovBtTPpXH5XrLtI= github.com/lrstanley/go-ytdlp v1.3.3/go.mod h1:VgjnTrvkTf+23JuySjyPq1iQ8ijSovBtTPpXH5XrLtI=
github.com/lrstanley/go-ytdlp v1.3.4 h1:x3ppgdeN3FbguT5ifc6ISrgjYN10+dVUAbprA7/dYrk= github.com/lrstanley/go-ytdlp v1.3.4 h1:x3ppgdeN3FbguT5ifc6ISrgjYN10+dVUAbprA7/dYrk=
github.com/lrstanley/go-ytdlp v1.3.4/go.mod h1:VgjnTrvkTf+23JuySjyPq1iQ8ijSovBtTPpXH5XrLtI= github.com/lrstanley/go-ytdlp v1.3.4/go.mod h1:VgjnTrvkTf+23JuySjyPq1iQ8ijSovBtTPpXH5XrLtI=
github.com/lrstanley/go-ytdlp v1.3.5 h1:eT+29mK3Lp+XPMQOH25+jVerrrjifYW1o3IkTYJ9SMs=
github.com/lrstanley/go-ytdlp v1.3.5/go.mod h1:VgjnTrvkTf+23JuySjyPq1iQ8ijSovBtTPpXH5XrLtI=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=