diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 18324bb41..833d2071b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,19 +11,13 @@ jobs: runs-on: ubuntu-latest-32 steps: - - name: Check Disk Space Before Build - run: df -h - - - name: Docker Prune - run: docker system prune -af - - name: Checkout code uses: actions/checkout@v2 with: ref: main # checkout the main branch to build nightly - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub uses: docker/login-action@v1 @@ -43,6 +37,3 @@ jobs: cache-to: type=gha,mode=max build-args: | ENGINE_VERSION=nightly - - - name: Check Disk Space After Build - run: df -h diff --git a/.github/workflows/tagBasedImageBuild.yml b/.github/workflows/tagBasedImageBuild.yml index e2f3feb74..3f9e9f9fb 100644 --- a/.github/workflows/tagBasedImageBuild.yml +++ b/.github/workflows/tagBasedImageBuild.yml @@ -12,12 +12,6 @@ jobs: LATEST_TAG: ${{ (github.event.release.target_commitish == 'main') && 'thirdweb/engine:latest' || '' }} steps: - - name: Check Disk Space Before Build - run: df -h - - - name: Docker Prune - run: docker system prune -af - - name: Checkout code uses: actions/checkout@v2 with: @@ -25,7 +19,7 @@ jobs: ref: ${{ github.event.release.target_commitish }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub uses: docker/login-action@v1 @@ -47,6 +41,3 @@ jobs: ${{ env.LATEST_TAG }} build-args: | ENGINE_VERSION=${{ github.event.release.tag_name }} - - - name: Check Disk Space After Build - run: df -h