17 Commits

Author SHA1 Message Date
fb0746e29e 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
2026-04-10 12:14:44 +00:00
b987f4775f Merge pull request 'chore(deps): update ad-m/github-push-action action to v1.1.0' (#66) from renovate/ad-m-github-push-action-1.x into dev
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 9s
Reviewed-on: #66
2026-04-10 12:09:12 +00:00
8ff5caaede chore(deps): update ad-m/github-push-action action to v1.1.0
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 4m25s
2026-04-10 06:01:25 +00:00
163a2af84b Merge pull request 'chore(deps): update golang docker tag to v1.26.2' (#65) from renovate/golang-1.x into dev
Reviewed-on: #65
2026-04-08 02:04:23 +00:00
88ced43981 chore(deps): update golang docker tag to v1.26.2
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 19s
2026-04-08 00:01:34 +00:00
f3cd0d0a89 Merge pull request 'chore(deps): update golang:1.26.1-trixie docker digest to 1d414b0' (#64) from renovate/golang-1.26.1-trixie into dev
Reviewed-on: #64
2026-04-07 23:10:24 +00:00
9ae57862a0 chore(deps): update golang:1.26.1-trixie docker digest to 1d414b0
All checks were successful
Build only (for PRs) / build-only (pull_request) Successful in 4m31s
2026-04-07 20:01:44 +00:00
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
5465bd4c77 Merge pull request 'release v1.0.4' (#60) from dev into master
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 5m14s
Build and Push Docker Image / deploy-on-green (push) Successful in 7s
Reviewed-on: #60
2026-03-18 02:50:48 +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
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
a0e511b4aa Merge pull request 'release v1.0.3' (#54) from dev into master
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 5m19s
Build and Push Docker Image / deploy-on-green (push) Successful in 7s
Reviewed-on: #54
2026-03-14 12:52:41 +00:00
4 changed files with 6 additions and 4 deletions

View File

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

View File

@@ -38,7 +38,7 @@ RUN case "$TARGETARCH" in \
################################################################################ ################################################################################
# FFmpeg builder stage # 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 && \ 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:96b28783b99bcd265fbfe0b36a3ac6462416ce6bf1feac85d4c4ff533cbaa473 AS app-builder FROM golang:1.26.2-trixie@sha256:da3943074756e8d6f109ce7a84be16e98bffa39e9d369a0447f016b56db84e8f 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=