"This legacy service is shutting down, effective April 15, 2025." #414
-
I'm using this Github Action workflow: Which started failing today due to GitHub sunsetting their old GitHub Actions caching systems: I'm not sure what part of my workflow is relying on that old GHA system. But it seems to be Any idea how to fix this?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Looks like you're using a self-hosted runner, maybe Buildx is not up to date (>= 0.21.0 required for new cache service v2), see docker/build-push-action#1345 (comment). But hard to guess without workflow logs. Edit our docs has been updated with a note about sunset of GHA cache service v1: https://docs.docker.com/build/ci/github-actions/cache/#github-cache |
Beta Was this translation helpful? Give feedback.
-
I am indeed using a hosted runner ( https://www.blacksmith.sh ). I've gone ahead and specified the version now: - name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest This seems to have fixed it 👍 |
Beta Was this translation helpful? Give feedback.
Looks like you're using a self-hosted runner, maybe Buildx is not up to date (>= 0.21.0 required for new cache service v2), see docker/build-push-action#1345 (comment). But hard to guess without workflow logs.
Edit our docs has been updated with a note about sunset of GHA cache service v1: https://docs.docker.com/build/ci/github-actions/cache/#github-cache