diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 834dfbab1..829a2ce6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -315,12 +315,10 @@ jobs: --env "GH_TOKEN=$GH_TOKEN" \ --env "GH_USER=$GH_USER" \ --platform ${{ matrix.platform }} \ - --mount type=bind,source="$PWD",target="$PWD" \ - --mount type=tmpfs,destination=/root/.pub-cache \ - --mount type=tmpfs,destination=/tmp \ + --volume "$PWD:$PWD" \ --workdir "$PWD" \ docker.io/library/dart:latest \ - /bin/sh -c "cp -R . /tmp/workspace && cd /tmp/workspace && dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}" + /bin/sh -c "dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}" env: GH_TOKEN: "${{ secrets.GH_TOKEN }}" GH_USER: sassbot