From 5058540112b4a75d032b7537181ca2960aafd7a1 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Sun, 25 Sep 2022 10:46:40 -0300 Subject: [PATCH] docs: improve actions docs Signed-off-by: Carlos A Becker --- www/docs/ci/actions.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/www/docs/ci/actions.md b/www/docs/ci/actions.md index 71ec6702e..0cee02f6f 100644 --- a/www/docs/ci/actions.md +++ b/www/docs/ci/actions.md @@ -53,10 +53,11 @@ jobs: ``` !!! warning "Some things to look closely..." - #### The action does not install dependencies - GoReleaser Action will not install any other software needed to release. - It's the user's responsibility to install and configure Go, Docker, Syft, - Cosign and any other tools the release might need. + #### The action does not install, configure or authenticate into dependencies + GoReleaser Action will not install nor setup any other software needed to + release. It's the user's responsibility to install and configure Go, Docker, + Syft, Cosign and any other tools the release might need. It's also the + user's responsibility to log in into tools that need it, such as docker. #### Fetch depthness Notice the `fetch-depth: 0` option on the `Checkout` workflow step.