From 6666773a3c058d61acd5fbfbcb45dc46aec428fb Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Wed, 17 Jun 2026 18:43:49 +0200 Subject: [PATCH] Aktualisiere GHA Actions auf aktuelle Versionen Batch-Commit via https://github.com/webfactory/bfg9000/pull/16 --- .github/workflows/dependencies.yml | 4 ++-- .github/workflows/fix-cs-php.yml | 2 +- .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 a476452..39da6a7 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@v4 + - uses: actions/checkout@v6 - name: Konfiguriere PHP-Version und -Einstellungen im Worker-Node uses: shivammathur/setup-php@v2 with: @@ -23,7 +23,7 @@ jobs: tools: composer:v2 ini-values: variables_order=EGPCS, date.timezone=Europe/Berlin - name: Cache Composer Dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor/ key: composer-${{ env.PHP_VERSION }}-${{ hashFiles('composer.*') }} diff --git a/.github/workflows/fix-cs-php.yml b/.github/workflows/fix-cs-php.yml index a34c846..1a5122f 100644 --- a/.github/workflows/fix-cs-php.yml +++ b/.github/workflows/fix-cs-php.yml @@ -16,7 +16,7 @@ jobs: if: github.actor != 'dependabot[bot]' steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 315195c..97b5f1e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: name: PHPUnit runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: mkdir --mode=777 -p $GITHUB_WORKSPACE/{tmp,logs} - name: Konfiguriere PHP-Version und -Einstellungen im Worker-Node uses: shivammathur/setup-php@v2 @@ -25,7 +25,7 @@ jobs: tools: composer:v2 ini-values: variables_order=EGPCS, date.timezone=Europe/Berlin - name: Cache Composer Dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor/ key: composer-${{ env.PHP_VERSION }}-${{ hashFiles('composer.*') }}