]> git.ipfire.org Git - thirdparty/rsync.git/commit
ci: clean up workflow shellcheck nits
authorAndrew Tridgell <andrew@tridgell.net>
Tue, 26 May 2026 09:59:16 +0000 (19:59 +1000)
committerAndrew Tridgell <andrew@tridgell.net>
Tue, 26 May 2026 20:46:08 +0000 (06:46 +1000)
commitd395d8df06f0cbac87444d76402f9707db59c223
treeabb1babd851f4e14a3c3625880cfe2fd6d1efa94
parent14d6c29d81ce4297b4c1cecb862c44cd11554311
ci: clean up workflow shellcheck nits

actionlint (rhysd/actionlint) reported a handful of shellcheck-class issues
across the GitHub Actions workflows.  All are 1-line mechanical fixes:

  * Replace legacy backticks in --rsync-bin=`pwd`/rsync with
    --rsync-bin="$PWD/rsync" (SC2006 + SC2046; almalinux-8-build,
    macos-build, ubuntu-22.04-build, ubuntu-build).
  * Quote >>$GITHUB_PATH redirects as >>"$GITHUB_PATH"
    (SC2086; coverage, macos-build, ubuntu-22.04-build, ubuntu-build).

After this commit `actionlint .github/workflows/*.yml` exits 0.

(Also cleaned up 6 editor backup *.yml~ files from the local working
tree; those weren't tracked -- *~ is gitignored -- so the cleanup is
local-only and not part of this commit.)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
.github/workflows/almalinux-8-build.yml
.github/workflows/coverage.yml
.github/workflows/macos-build.yml
.github/workflows/ubuntu-22.04-build.yml
.github/workflows/ubuntu-build.yml