Skip to content

Commit 0bd4d10

Browse files
ralyodioclaude
andcommitted
chore: bump Forgejo to 11.0.15 + add Dependabot to keep deps current
Audit of every version pin in the repo: Ergo (2.18.0), Go (1.26 → latest patch via setup-go), the Ubuntu pod base (24.04 LTS), and the GitHub Action majors are all already current. Only Forgejo was stale — bump 11.0.1 → 11.0.15 (latest patch of the 11.x LTS line; a 15.x major stays a deliberate, tested upgrade because of DB migrations). Add .github/dependabot.yml so github-actions, Go modules, and the Docker image tags (Mailu compose + pod Containerfile) get review-gated update PRs weekly. Shell-string pins (FORGEJO_VERSION/ERGO_VERSION in setup.sh) can't be watched by Dependabot; noted inline. Mailu runtime patch level is handled by the mailu-update workflow. Co-Authored-By: Claude Opus 4.8 <[email protected]>
1 parent a8dcc75 commit 0bd4d10

2 files changed

Lines changed: 43 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Keep agentbbs's pinned dependencies current automatically. Dependabot opens
2+
# (review-gated) PRs when a newer version ships — nothing auto-merges, so a bad
3+
# bump can't silently reach production.
4+
#
5+
# Coverage:
6+
# - github-actions : the action pins in .github/workflows/* (checkout, setup-go…)
7+
# - gomod : Go module dependencies (go.mod / go.sum)
8+
# - docker : image tags in the Mailu compose stack and the pod Containerfile
9+
#
10+
# NOT covered (Dependabot can't watch shell-string pins): FORGEJO_VERSION and
11+
# ERGO_VERSION in setup.sh — bump those by hand, or switch to Renovate (which can
12+
# watch them via a custom regex manager). The Mailu *runtime* patch level is kept
13+
# current separately by .github/workflows/mailu-update.yml.
14+
version: 2
15+
updates:
16+
- package-ecosystem: github-actions
17+
directory: /
18+
schedule:
19+
interval: weekly
20+
groups:
21+
github-actions:
22+
patterns: ["*"]
23+
24+
- package-ecosystem: gomod
25+
directory: /
26+
schedule:
27+
interval: weekly
28+
groups:
29+
go-modules:
30+
patterns: ["*"]
31+
32+
# Mailu compose stack — bumps ghcr.io/mailu/* image tags.
33+
- package-ecosystem: docker
34+
directory: /deploy/mailu
35+
schedule:
36+
interval: weekly
37+
38+
# Pod base image (docker.io/library/ubuntu).
39+
- package-ecosystem: docker
40+
directory: /pods
41+
schedule:
42+
interval: weekly

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ IRC_NETWORK="${IRC_NETWORK:-ProfullstackBBS}" # IRC network name shown to clien
5252
ERGO_DATA="${ERGO_DATA:-/var/lib/ergo}" # Ergo state dir (ircd.db, tls/)
5353
FORGEJO="${FORGEJO:-1}" # set 0 to skip the AgentGit Forgejo backend (git.${DOMAIN#*.})
5454
GIT_DOMAIN="${GIT_DOMAIN:-git.${DOMAIN#*.}}" # AgentGit host (default: git.<root-of-DOMAIN>, e.g. git.profullstack.com)
55-
FORGEJO_VERSION="${FORGEJO_VERSION:-11.0.1}" # Forgejo release to install
55+
FORGEJO_VERSION="${FORGEJO_VERSION:-11.0.15}" # Forgejo release to install (latest 11.0.x LTS patch)
5656
MAIL_STACK="${MAIL_STACK:-1}" # set 0 to skip the co-located Mailu mail stack (mail.${DOMAIN#*.}). NOT named MAIL: that is a reserved env var (the mail-spool path, e.g. /var/mail/root) which PAM sets under sudo, so a CI deploy inherited MAIL=/var/mail/root and silently dropped the mail Caddy route + §9e provisioning.
5757
MAIL_DOMAIN="${MAIL_DOMAIN:-mail.${DOMAIN#*.}}" # mail host (default: mail.<root-of-DOMAIN>, e.g. mail.profullstack.com)
5858
FORGEJO_HTTP_ADDR="${FORGEJO_HTTP_ADDR:-127.0.0.1:3000}" # Forgejo loopback HTTP (Caddy fronts it)

0 commit comments

Comments
 (0)