diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26bb88f..e38fb83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: name: CI Image Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: docker/setup-buildx-action@v2 @@ -37,14 +37,14 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max target: ci - platforms: linux/amd64,linux/arm64/v8 + platforms: linux/amd64 test: name: Test Suite runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: docker/login-action@v2 @@ -65,7 +65,8 @@ jobs: needs: [build] if: startsWith(github.ref, 'refs/heads/') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: docker/setup-qemu-action@v3 - uses: docker/setup-buildx-action@v2 - uses: docker/login-action@v2 with: @@ -87,7 +88,7 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max target: full - platforms: linux/amd64,linux/arm64/v8 + platforms: linux/amd64 publish-image: name: Publish Image @@ -95,7 +96,8 @@ jobs: needs: [build, test, release-please] if: ${{ needs.release-please.outputs.release_created }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: docker/setup-qemu-action@v3 - uses: docker/setup-buildx-action@v2 - uses: docker/login-action@v2 with: