From 4278e56eeed36bd72bfd0369cf74a99b12435c1d Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 23 Aug 2023 15:49:35 +0200 Subject: [PATCH] Remove pigz usage from CI Apparently, it's not in the GitHub Actions Ubuntu images anymore so let's get rid of it. --- .github/workflows/ci-actions-incremental.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-actions-incremental.yml b/.github/workflows/ci-actions-incremental.yml index 93b3cbc29a2ad..0aa52a1bdb08d 100644 --- a/.github/workflows/ci-actions-incremental.yml +++ b/.github/workflows/ci-actions-incremental.yml @@ -174,7 +174,7 @@ jobs: echo 'EOF' >> $GITHUB_OUTPUT - name: Tar Maven Repo shell: bash - run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository + run: tar -czf maven-repo.tgz -C ~ .m2/repository - name: Persist Maven Repo uses: actions/upload-artifact@v3 with: