diff options
| author | Jiang Xin <worldhello.net@gmail.com> | 2024-02-16 11:20:39 +0800 |
|---|---|---|
| committer | Jiang Xin <worldhello.net@gmail.com> | 2024-02-16 11:51:19 +0800 |
| commit | 1bb7fcbffc213db044476998f3a14b2597f3c540 (patch) | |
| tree | c15c29379559d88889c9b7f5dfe8e1a7b45b52e4 | |
| parent | l10n: ci: remove unused param for add-pr-comment@v2 (diff) | |
| download | git-1bb7fcbffc213db044476998f3a14b2597f3c540.tar.gz git-1bb7fcbffc213db044476998f3a14b2597f3c540.zip | |
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 <worldhello.net@gmail.com>
| -rw-r--r-- | .github/workflows/l10n.yml | 1 |
1 files changed, 1 insertions, 0 deletions
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 |
