From a36e1ae169bf6a519e8df357b6341938eb9ae3fb Mon Sep 17 00:00:00 2001 From: Andrew Koenig Date: Sat, 15 Aug 2026 06:03:20 -0500 Subject: [PATCH 1/2] Update GitHub workflow to latest actions --- .github/workflows/container.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 556cc23..3fde305 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -30,7 +30,7 @@ jobs: runner: ubuntu-24.04-arm steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Declare platform run: | @@ -38,7 +38,7 @@ jobs: echo "PLATFORM=${platform//\//-}" >> $GITHUB_ENV - name: Cache wheels - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/wheels key: wheels-${{ env.PLATFORM }}-${{ github.run_id }} @@ -49,13 +49,13 @@ jobs: run: ls -lR ${{ github.workspace }}/wheels || true - name: Setup QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v4 - name: Setup Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -63,13 +63,13 @@ jobs: - name: Calculate container metadata id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ghcr.io/${{ github.repository }} - name: Build stage id: build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . platforms: ${{ matrix.platform }} @@ -81,7 +81,7 @@ jobs: - name: Final stage and push by digest id: final - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . platforms: ${{ matrix.platform }} @@ -99,7 +99,7 @@ jobs: - name: Upload digest if: ${{ github.event_name != 'pull_request' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: digests-${{ env.PLATFORM }} path: /tmp/digests/* @@ -118,7 +118,7 @@ jobs: needs: [build] steps: - name: Download digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: /tmp/digests pattern: digests-* @@ -126,15 +126,15 @@ jobs: - name: Calculate container metadata id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ghcr.io/${{ github.repository }} - name: Setup Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} From ce3d8f4af85dd908fc0defd11e9c91a8ad717674 Mon Sep 17 00:00:00 2001 From: Andrew Koenig Date: Sat, 15 Aug 2026 06:08:23 -0500 Subject: [PATCH 2/2] Drop arm/v6 support --- .github/workflows/container.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 3fde305..054288d 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -24,8 +24,6 @@ jobs: runner: ubuntu-latest - platform: linux/arm64 runner: ubuntu-24.04-arm - - platform: linux/arm/v6 - runner: ubuntu-24.04-arm - platform: linux/arm/v7 runner: ubuntu-24.04-arm steps: