From: Jiang Xin Date: Fri, 16 Feb 2024 03:20:39 +0000 (+0800) Subject: l10n: ci: disable cache for setup-go to suppress warnings X-Git-Tag: v2.44.0-rc2~2^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1bb7fcbffc213db044476998f3a14b2597f3c540;p=thirdparty%2Fgit.git l10n: ci: disable cache for setup-go to suppress warnings After we upgraded actions/setup-go to v5, the following warning message was reported every time we ran the CI. Restore cache failed: Dependencies file is not found ... Disable cache to suppress warning messages as described in the solution below. https://github.com/actions/setup-go/issues/427 Signed-off-by: Jiang Xin --- diff --git a/.github/workflows/l10n.yml b/.github/workflows/l10n.yml index 6d3ae9daf1..e2c3dbdcb5 100644 --- a/.github/workflows/l10n.yml +++ b/.github/workflows/l10n.yml @@ -66,6 +66,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: '>=1.16' + cache: false - name: Install git-po-helper run: go install github.com/git-l10n/git-po-helper@main - name: Install other dependencies