From 67c2a0f62a0fda5fd7690144201f237d286e9812 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Fri, 7 Jun 2024 12:30:21 +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 | 6 +++--- .github/workflows/fix-cs-php.yml | 4 ++-- .github/workflows/tests.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 9fc46d2..bd4f754 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -15,15 +15,15 @@ env: jobs: composer-require-checker: name: Check missing composer requirements - runs-on: ubuntu-20.04 + runs-un: ubuntu-22.04 steps: - uses: shivammathur/setup-php@v2 with: php-version: ${{ env.PHP_VERSION }} coverage: none tools: composer:v2 - - uses: actions/checkout@v3 - - uses: actions/cache@v3 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: vendor key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ matrix.symfony-locked-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/fix-cs-php.yml b/.github/workflows/fix-cs-php.yml index ba59f55..d03845e 100644 --- a/.github/workflows/fix-cs-php.yml +++ b/.github/workflows/fix-cs-php.yml @@ -12,11 +12,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 a6d3d95..26583cb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ env: jobs: PHPUnit: - runs-on: ubuntu-20.04 + runs-un: ubuntu-22.04 strategy: fail-fast: false matrix: @@ -24,13 +24,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') }}