From 006c8b4a104b1c8af12a0d704860a4797c1d09df Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Fri, 7 Jun 2024 12:48:27 +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 | 4 ++-- .github/workflows/tests.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 890fdcd..0390448 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 a24d473..a246f9c 100644 --- a/.github/workflows/fix-cs-php.yml +++ b/.github/workflows/fix-cs-php.yml @@ -9,11 +9,11 @@ name: Coding Standards jobs: open-pr-for-cs-violations: name: PHP-CS-Fixer - runs-on: ubuntu-20.04 + runs-un: ubuntu-22.04 if: github.actor != 'dependabot[bot]' 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 0e1c158..6ec1b1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,10 +28,10 @@ jobs: php-version: ${{ matrix.php-version }} coverage: none tools: composer:v2 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: VERSION=${{ matrix.symfony-locked-version }} .github/workflows/lock-symfony-version.sh if: matrix.symfony-locked-version != 'none' - - 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') }}