runner: resolve action refs against github.com by default

Forgejo's runner defaults to fetching `uses: org/repo@vN` from its
instance's mirror (data.forgejo.org), which doesn't host most
GitHub-marketplace actions like cachix/install-nix-action. Pointing
default_actions_url at github.com makes the existing workflow Just Work
without fully-qualified URLs in `uses:` lines.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-05-01 18:45:35 +01:00
parent dad207d19b
commit 046b4bff90

View file

@ -26,6 +26,10 @@
labels = [ labels = [
"fred-nix:docker://catthehacker/ubuntu:act-latest" "fred-nix:docker://catthehacker/ubuntu:act-latest"
]; ];
# Resolve `uses: org/repo@v1` against github.com — without this the
# runner falls back to the Forgejo instance's mirror (data.forgejo.org)
# which doesn't host most GitHub-marketplace actions.
settings.runner.default_actions_url = "https://github.com";
}; };
}; };
}; };