From 735218da571731ad57118113c506590fec0e3fa5 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Fri, 7 Jun 2024 12:28:40 +0200 Subject: [PATCH] Aktualisiere GHA `actions/checkout` und `actions/cache` (Case 171395) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automatischer Commit über https://github.com/webfactory/bfg9000/pull/1 --- .github/workflows/dependencies.yml | 2 +- .github/workflows/fix-cs-php.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index dfd6bdf..d3c170f 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -14,7 +14,7 @@ jobs: name: Check missing composer requirements runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Konfiguriere PHP-Version und -Einstellungen im Worker-Node uses: shivammathur/setup-php@v2 with: diff --git a/.github/workflows/fix-cs-php.yml b/.github/workflows/fix-cs-php.yml index 9aad709..0fcd50a 100644 --- a/.github/workflows/fix-cs-php.yml +++ b/.github/workflows/fix-cs-php.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5ccbb18..53f8aba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,13 +21,13 @@ jobs: - { php-version: 8.3, symfony-locked-version: none, dependency-version: prefer-stable } name: PHPUnit (PHP ${{matrix.php-version}}, Symfony Version Lock ${{ matrix.symfony-locked-version }}, ${{ matrix.dependency-version }}) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} coverage: none tools: composer:v2 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: vendor key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.symfony-locked-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}