Skip to content

Commit 830dd91

Browse files
committed
Fix GitHub Actions caching
Need the latest buildx to use the latest GitHub Actions Cache. This also requires a slight tweak to how we download artifacts, because the Docker action now uploads an artifact that isn't a Zip file. Signed-off-by: Nic Cope <[email protected]>
1 parent 8693a13 commit 830dd91

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
# Common versions
1717
GO_VERSION: '1.23.1'
1818
GOLANGCI_VERSION: 'v1.61.0'
19-
DOCKER_BUILDX_VERSION: 'v0.11.2'
19+
DOCKER_BUILDX_VERSION: 'v0.24.0'
2020

2121
# These environment variables are important to the Crossplane CLI install.sh
2222
# script. They determine what version it installs.
@@ -140,6 +140,8 @@ jobs:
140140
- name: Download Single-Platform Packages
141141
uses: actions/download-artifact@v4
142142
with:
143+
# See https://github.com/docker/build-push-action/blob/263435/README.md#summaries
144+
pattern: "!*.dockerbuild"
143145
path: .
144146
merge-multiple: true
145147

0 commit comments

Comments
 (0)