diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index bca79de9..28f4c6a0 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -7,14 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v3 - with: - fetch-depth: 2 + - name: Check out the repo + uses: actions/checkout@v2 - - run: git checkout HEAD^2 - - - name: Run Linter - run: | - docker run --rm -v $PWD:/app composer sh -c \ - "composer install --profile --ignore-platform-reqs && composer lint" + - name: Run Linter + run: | + docker run --rm -v $PWD:/app composer sh -c \ + "composer install --profile --ignore-platform-reqs && composer lint" \ No newline at end of file