diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index a7a3df53..69f1be05 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -19,7 +19,9 @@ jobs: steps: - name: Checkout project - uses: actions/checkout@v6 + uses: actions/checkout@v7 + with: + persist-credentials: false - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -36,7 +38,7 @@ jobs: sudo apt install -y libjpeg-dev libgif-dev libtiff-dev libpng-dev libwebp-dev libavif-dev libheif-dev libraqm-dev libmagickwand-dev - name: Cache ImageMagick - uses: actions/cache@v5 + uses: actions/cache@v6 id: cache-imagemagick with: path: /home/runner/im/imagemagick-${{ matrix.imagemagick }} @@ -80,7 +82,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.json') }}