diff options
| author | Adrian Freund <adrian@freund.io> | 2024-10-31 16:54:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-31 15:54:35 +0000 |
| commit | 36f8cdf91b909bc9334a7afa63a969d6a8b9ce68 (patch) | |
| tree | 1520077f1f6a8b79daff31fd6931b8fa5d48c470 /.github | |
| parent | b88ec6016eacd390c7e68344c50049764515eba9 (diff) | |
Fix dockerfile not cross compiling correctly (#5294)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/docker-image.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 0b94ed43..4b85258e 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -36,18 +36,18 @@ jobs: run: echo "TYPST_BUILD_DATE=\"$(date -u +'%Y-%m-%dT%H:%M:%SZ')\" >> $GITHUB_ENV" - name: Setup Docker buildx - uses: docker/setup-buildx-action@v3.1.0 + uses: docker/setup-buildx-action@v3.7.1 with: platforms: ${{ matrix.platform }} - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v5.0.0 + uses: docker/metadata-action@v5.5.1 with: images: ${{ env.IMAGE_NAME }} - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@v3.0.0 + uses: docker/login-action@v3.3.0 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -55,7 +55,7 @@ jobs: - name: Build Docker image id: build - uses: docker/build-push-action@v5.1.0 + uses: docker/build-push-action@v6.9.0 with: labels: ${{ steps.meta.outputs.labels }} platforms: ${{ matrix.platform }} |
