Skip to content

Tar errors on cache restore after toolchain installation #424

@matthewhughes-uw

Description

@matthewhughes-uw

Description:

When the version of Go in the go directive of go.mod is different from the version in the toolchain directive there is a cache conflict which causes errors on cache extraction.

Note: I think this is related to, but different from #403 since that appears to be covering the situation where some other tool is also working on the cache, but this issue is purely for the action running on a hosted runner without any additional changes to the environment etc.

Action version:

actions/setup-go@v4

Platform:

  • Ubuntu
    macOS (untested)
    Windows (untested)

Runner type:

  • Hosted
    Self-hosted

Tools version:

  • go 1.21.0
  • toolchain go1.21.1

Repro steps:

See repo https://github.com/matthewhughes-uw/setup-go-test/, very basic repo with a single workflow that just runs this action (https://github.com/matthewhughes-uw/setup-go-test/blob/main/.github/workflows/go.yaml):

First run of the action https://github.com/matthewhughes-uw/setup-go-test/actions/runs/6195831453/job/16821285537

  • Installs Go 1.21.0 (version detected from go-version-file
  • Go detects toolchain and performs a toolchain install of Go 1.21.1 (see output go: downloading go1.21.1 (linux/amd64))
  • This places some files under ../../../go/pkg/mod/golang.org/toolchain@v0.0.1-go1.21.1.linux-amd64
  • Finds no existing cache, doesn't try to extract anything
  • Caches /home/runner/go/pkg/mod (which contains the files above) and /home/runner/.cache/go-build

Second run of the action https://github.com/matthewhughes-uw/setup-go-test/actions/runs/6195844389/job/16821321968

  • First two steps as above
  • Finds an existing cache, attempts to extract it, but because of the toolchain installation step files under ../../../go/pkg/mod/golang.org/toolchain@v0.0.1-go1.21.1.linux-amd64 are already present on the machine, causing errors from tar

Expected behavior:

Caching of the toolchain is handled gracefully, no errors between runs that don't contain any extra caching logic outside of what the action provides by default

Actual behavior:

Errors on cache extraction (see repro steps)

Activity

changed the title [-]Tar errors on cache restore with differing go and toolchain directives[/-] [+]Tar errors on cache restore after toolchain installation[/+] on Sep 15, 2023
dsame

dsame commented on Sep 15, 2023

@dsame
Contributor

Hello @matthewhughes-uw , thank you for the input. We are starting to investigate the problem.

self-assigned this
on Oct 16, 2023
linked a pull request that will close this issueRemove toolchain directories from the cache. #437on Oct 24, 2023
linked a pull request that will close this issueRemove toolchain directories from the cache #438on Oct 24, 2023
thall

thall commented on Jan 8, 2024

@thall

Hello @matthewhughes-uw , thank you for the input. We are starting to investigate the problem.

do you have any updates around this to share?

33 remaining items

matthewhughes-uw

matthewhughes-uw commented on Apr 14, 2025

@matthewhughes-uw
Author

If you have any additional details or observations, feel free to share them here. Thanks again for your contribution!

Per my comment above (#424 (comment)) I think the solution here is to avoid Go toolchain installs (since these are what cause the duplicate files), see also:

removed their assignment
on May 5, 2025
added a commit that references this issue on Sep 3, 2025
aparnajyothi-y

aparnajyothi-y commented on Oct 8, 2025

@aparnajyothi-y
Contributor

Hello Everyone, This issue has been addressed through improvements in #460. The problem no longer reproduces in the latest v6 release. Please update to the latest version, and reopen if the issue persists. Thank you

added a commit that references this issue on Oct 13, 2025
added a commit that references this issue on Oct 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      Participants

      @thall@dsame@timandy@lukeed@spencerschrock

      Issue actions

        Tar errors on cache restore after toolchain installation · Issue #424 · actions/setup-go