From 5ace0015bbd2d3b4ca2ecd876a5a0e5110d08e52 Mon Sep 17 00:00:00 2001 From: Ingolf Steinardt Date: Wed, 15 May 2024 17:00:50 +0200 Subject: [PATCH] Update github action versions --- .github/workflows/diagnostics.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/diagnostics.yml b/.github/workflows/diagnostics.yml index bddb943b..36e23651 100644 --- a/.github/workflows/diagnostics.yml +++ b/.github/workflows/diagnostics.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Pull source - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP with PECL extension uses: shivammathur/setup-php@v2 @@ -28,7 +28,7 @@ jobs: # setup caches - name: Cache composer cache directory - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: composer-cache-dir with: @@ -36,7 +36,7 @@ jobs: key: ${{ runner.os }}-${{ matrix.php }}-build-${{ env.cache-name }} - name: Cache vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: vendor with: @@ -46,7 +46,7 @@ jobs: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.contao }}-build-${{ env.cache-name }}- - name: Cache phpcq directory - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: phpcq with: @@ -68,7 +68,7 @@ jobs: run: ./vendor/bin/phpcq run -v ${{ matrix.output }} - name: Upload build directory to artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ success() }} || ${{ failure() }} with: name: phpcq-builds-php-${{ matrix.php }}-${{ matrix.contao }}